import React from 'react'; import Examples from '../utils/Examples.js'; import ReactButton from '../../../src/react/Button.js'; import PrimaryButton from '../../../components/button/button-primary.html'; import PrimaryButtonDisabled from '../../../components/button/button-primary-disabled.html'; import ExtraSmall from '../../../components/button/button-primary-extra-small.html'; import Small from '../../../components/button/button-primary-small.html'; import Medium from '../../../components/button/button-primary-medium.html'; import Large from '../../../components/button/button-primary-large.html'; import Auto from '../../../components/button/button-primary-auto.html'; let examples = { 'Primary Default': { jsx: {}}>Click Me, html: PrimaryButton }, 'Primary Disabled': { jsx: {}} disabled>Click Me, html: PrimaryButtonDisabled, }, 'Extra Small': { jsx: {}}>Click Me, html: ExtraSmall }, 'Small': { jsx: {}}>Click Me, html: Small, }, 'Medium': { jsx: {}}>Click Me, html: Medium }, 'Large': { jsx: {}}>Click Me, html: Large, }, 'Auto Sizing': { jsx: {}}>Click Me, html: Auto, } }; const DefaultButtons = () => ( ); export default DefaultButtons;