import * as React from "react"; import { Clickable } from "../../../clickable"; import { action } from "@storybook/addon-actions"; import { purple } from "../../../design-tokens/build/js/designTokens"; const fakeButtonStyles = { cursor: "pointer", color: purple }; export const PrimaryAction = () => ( Primary Action ); export const SecondaryAction = () => ( Secondary Action );