import { Link, MetaList, Status } from '@pega/cosmos-react-core';
export default {
    title: 'Core/MetaList',
    component: MetaList
};
export const MetaListDemo = (args) => {
    return (<MetaList wrapItems={args.wrapItems} items={[
            'email@example.com',
            <Status variant='success'>Verified</Status>,
            <>
          Go to{' '}
          <Link href='https://www.pega.com' target='_blank'>
            Pega.com
          </Link>
        </>
        ]}/>);
};
MetaListDemo.args = {
    wrapItems: true
};
MetaListDemo.argTypes = {
    wrapItems: { control: { type: 'boolean' } }
};
//# sourceMappingURL=MetaList.stories.jsx.map