import type { Story } from '@storybook/react'; import { ButtonArrow } from '@govuk-react/icons'; import * as React from 'react'; import { BLUE, TEXT_COLOUR, YELLOW, GREY_3, ORANGE } from 'govuk-colours'; import { MemoryRouter, Route, Routes, Link } from 'react-router-dom'; import { Button } from '.'; export default { title: 'Form/Button', id: 'button', component: Button, }; const Template: Story> = (args) =>

Test path} /> Home path} /> ); RouterLinkButton.args = { children: 'Home Link button', as: Link, to: '/', };