{"version":3,"file":"QRCode.stories.jsx","sourceRoot":"","sources":["../../../src/core/QRCode/QRCode.stories.tsx"],"names":[],"mappings":"AAEA,OAAO,EAAE,MAAM,EAAE,MAAM,yBAAyB,CAAC;AAEjD,eAAe;IACb,KAAK,EAAE,aAAa;IACpB,SAAS,EAAE,MAAM;IACjB,IAAI,EAAE;QACJ,KAAK,EAAE,aAAa;QACpB,KAAK,EAAE,QAAQ;KAChB;IACD,QAAQ,EAAE;QACR,KAAK,EAAE,EAAE,IAAI,EAAE,QAAQ,EAAE;QACzB,KAAK,EAAE,EAAE,IAAI,EAAE,QAAQ,EAAE;KAC1B;CACM,CAAC;AAOV,MAAM,CAAC,MAAM,UAAU,GAA6B,CAAC,IAAqB,EAAE,EAAE;IAC5E,OAAO,CAAC,MAAM,CAAC,KAAK,CAAC,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,KAAK,CAAC,CAAC,IAAI,CAAC,KAAK,CAAC,EAAG,CAAC;AAC1D,CAAC,CAAC","sourcesContent":["import type { Meta, StoryFn } from '@storybook/react';\n\nimport { QRCode } from '@pega/cosmos-react-core';\n\nexport default {\n  title: 'Core/QRCode',\n  component: QRCode,\n  args: {\n    value: 'QRCode Demo',\n    label: 'QRCode'\n  },\n  argTypes: {\n    value: { type: 'string' },\n    label: { type: 'string' }\n  }\n} as Meta;\n\ninterface QRCodeDemoProps {\n  value: string;\n  label: string;\n}\n\nexport const QRCodeDemo: StoryFn<QRCodeDemoProps> = (args: QRCodeDemoProps) => {\n  return <QRCode value={args.value} label={args.label} />;\n};\n"]}