import {createElectionResultListBadge} from "./ElectionResultListBadgeComponent"; export default { title: 'Components/Election Result List Badge', argTypes: {} } const Template = ({...args}) => { return createElectionResultListBadge({...args}); }; export const ElectionResultListBadge = Template.bind({}); ElectionResultListBadge.args = {}; export const ElectionResultListBadgeInverted = Template.bind({}); ElectionResultListBadgeInverted.args = { inverted: true, closable: true, preLabel: 'Wahlgruppe 19', colon: true, label: 'Kreditinstitute / Versicherungen / Immobilienwirtschaft', };