import React from 'react';
import Examples from '../utils/Examples.js';
import ReactButton from '../../../src/react/Button.js';
import LinkButton from '../../../components/button/button-link.html';
import LinkButtonDisabled from '../../../components/button/button-link-disabled.html';
import ExtraSmall from '../../../components/button/button-link-extra-small.html';
import Small from '../../../components/button/button-link-small.html';
import Medium from '../../../components/button/button-link-medium.html';
import Large from '../../../components/button/button-link-large.html';
import Auto from '../../../components/button/button-link-auto.html';
let examples = {
'Link Default': {
jsx: {}}>Click Me,
html: LinkButton
},
'Link Disabled': {
jsx: {}} disabled>Click Me,
html: LinkButtonDisabled,
},
'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;