{"version":3,"file":"ParagraphDisplay.stories.jsx","sourceRoot":"","sources":["../../../src/core/Paragraph/ParagraphDisplay.stories.tsx"],"names":[],"mappings":"AAEA,OAAO,EAAE,gBAAgB,EAAE,MAAM,yBAAyB,CAAC;AAG3D,eAAe;IACb,KAAK,EAAE,gBAAgB;IACvB,SAAS,EAAE,gBAAgB;CACpB,CAAC;AAEV,MAAM,CAAC,MAAM,oBAAoB,GAAmC,CAClE,IAA2B,EAC3B,EAAE;IACF,OAAO,CAAC,gBAAgB,CAAC,KAAK,CAAC,CAAC,IAAI,CAAC,KAAK,CAAC,EAAG,CAAC;AACjD,CAAC,CAAC;AAEF,oBAAoB,CAAC,IAAI,GAAG;IAC1B,KAAK,EAAE,yCAAyC;CACjD,CAAC;AAEF,oBAAoB,CAAC,QAAQ,GAAG;IAC9B,KAAK,EAAE,EAAE,OAAO,EAAE,EAAE,IAAI,EAAE,MAAM,EAAE,SAAS,EAAE,IAAI,EAAE,EAAE;CACtD,CAAC","sourcesContent":["import type { Meta, StoryFn } from '@storybook/react';\n\nimport { ParagraphDisplay } from '@pega/cosmos-react-core';\nimport type { ParagraphDisplayProps } from '@pega/cosmos-react-core';\n\nexport default {\n  title: 'Core/Paragraph',\n  component: ParagraphDisplay\n} as Meta;\n\nexport const ParagraphDisplayDemo: StoryFn<ParagraphDisplayProps> = (\n  args: ParagraphDisplayProps\n) => {\n  return <ParagraphDisplay value={args.value} />;\n};\n\nParagraphDisplayDemo.args = {\n  value: \"Here's a string with\\na new line in it.\"\n};\n\nParagraphDisplayDemo.argTypes = {\n  value: { control: { type: 'text', multiLine: true } }\n};\n"]}