You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

18 line
384 B

  1. import {createSearchButton} from "./SearchButtonComponent";
  2. export default {
  3. title: 'Atoms/Search Button',
  4. args: {}
  5. }
  6. const Template = ({...args}) => {
  7. return createSearchButton({...args});
  8. };
  9. export const SearchButton = Template.bind({});
  10. SearchButton.args = {};
  11. export const SearchButtonColored = Template.bind({});
  12. SearchButtonColored.args = {
  13. btnClass: 'secondary',
  14. };