Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
 
 
 
 

18 строки
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. };