Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.
 
 
 
 

23 rindas
609 B

  1. import {createElectionResultListBadge} from "./ElectionResultListBadgeComponent";
  2. export default {
  3. title: 'Components/Election Result List Badge',
  4. argTypes: {}
  5. }
  6. const Template = ({...args}) => {
  7. return createElectionResultListBadge({...args});
  8. };
  9. export const ElectionResultListBadge = Template.bind({});
  10. ElectionResultListBadge.args = {};
  11. export const ElectionResultListBadgeInverted = Template.bind({});
  12. ElectionResultListBadgeInverted.args = {
  13. inverted: true,
  14. closable: true,
  15. preLabel: 'Wahlgruppe 19',
  16. colon: true,
  17. label: 'Kreditinstitute / Versicherungen / Immobilienwirtschaft',
  18. };