diff --git a/apps/explorer/src/app/components/blocks/blocks-refetch.tsx b/apps/explorer/src/app/components/blocks/blocks-refetch.tsx index 4fe214687..fe5ce7b7d 100644 --- a/apps/explorer/src/app/components/blocks/blocks-refetch.tsx +++ b/apps/explorer/src/app/components/blocks/blocks-refetch.tsx @@ -1,15 +1,18 @@ +import { Button } from '@vegaprotocol/ui-toolkit'; + interface BlocksRefetchProps { refetch: () => void; } export const BlocksRefetch = ({ refetch }: BlocksRefetchProps) => { return ( - + ); }; diff --git a/libs/ui-toolkit/src/components/button/button.stories.tsx b/libs/ui-toolkit/src/components/button/button.stories.tsx index 324759938..f2161ca90 100644 --- a/libs/ui-toolkit/src/components/button/button.stories.tsx +++ b/libs/ui-toolkit/src/components/button/button.stories.tsx @@ -38,7 +38,13 @@ Inline.args = { variant: 'inline', }; -export const NavAccent: Story = (args) => ( +export const InlineLink = Template.bind({}); +InlineLink.args = { + children: 'Inline link', + variant: 'inline-link', +}; + +export const NavAccent: Story = () => ( <>