import * as React from 'react' import type { StoryFn, Meta } from '@storybook/react-webpack5' import { GridCellLink } from '.' export default { title: 'pv-grid/Components/Cells/GridCellLink (Deprecated)', id: 'pv-grid/Components/Cells/GridCellLink', tags: ['autodocs'], component: GridCellLink, parameters: { badges: ['intl'], }, args: { label: 'Go to artefact', href: 'https://www.google.com', target: '_blank', }, argTypes: {}, } satisfies Meta export const Default: StoryFn = (props) => ( )