import { BottomNavNormal, BottomNavItem } from '../../bottom-nav';


const styles = `
#test-area {
    background-color: var(--kendo-color-base);
}
`;

export default () =>(
    <>
        <style>{styles}</style>
        <div id="test-area" className="k-d-grid k-grid-cols-1">

            <section>
                <h4>Bottom Navigation RTL Horizontal</h4>
                <BottomNavNormal themeColor="primary" border dir="rtl">
                    <BottomNavItem icon="envelope" text="Normal" />
                    <BottomNavItem icon="envelope" text="Focused" focus />
                    <BottomNavItem icon="envelope" text="Selected" selected />
                    <BottomNavItem icon="envelope" text="Disabled" disabled />
                </BottomNavNormal>
            </section>

            <section>
                <h4>Bottom Navigation RTL Vertical</h4>
                <BottomNavNormal themeColor="primary" border flow="vertical" dir="rtl">
                    <BottomNavItem icon="envelope" text="Normal" />
                    <BottomNavItem icon="envelope" text="Focused" focus />
                    <BottomNavItem icon="envelope" text="Selected" selected />
                    <BottomNavItem icon="envelope" text="Disabled" disabled />
                </BottomNavNormal>
            </section>
        </div>
    </>
);
