import { URLDisplay } from '@pega/cosmos-react-core';
export default {
    title: 'Core/URL',
    component: URLDisplay
};
export const URLDisplayDemo = (args) => (<URLDisplay value={args.value} displayText={args.displayText} variant={args.variant}/>);
URLDisplayDemo.args = {
    value: 'https://www.google.com/',
    displayText: 'Example URL',
    variant: 'link'
};
URLDisplayDemo.argTypes = {
    value: { control: { type: 'text' } },
    displayText: { control: { type: 'text' } },
    variant: { options: ['link', 'text', 'qrcode'], control: { type: 'select' } }
};
//# sourceMappingURL=URL.stories.jsx.map