02-NavigationButton.stories.tsx 580 B

123456789101112131415161718192021222324252627282930
  1. import React from "react"
  2. import { NavButton } from "../src/"
  3. export default {
  4. title: "NavButton",
  5. component: NavButton,
  6. }
  7. export const PrimaryRight = () => (
  8. <NavButton />
  9. )
  10. export const PrimaryLeft = () => (
  11. <NavButton direction="left" />
  12. )
  13. export const SecondaryRight = () => (
  14. <NavButton type="secondary" />
  15. )
  16. export const SecondaryLeft = () => (
  17. <NavButton type="secondary" direction="left" />
  18. )
  19. export const AppNavigation = () => (
  20. <div>
  21. <NavButton type="secondary" direction="left" />
  22. <NavButton type="secondary" direction="right" />
  23. </div>
  24. )