aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/molecules/buttons/back-to-top.stories.tsx
diff options
context:
space:
mode:
authorArmand Philippot <git@armandphilippot.com>2023-10-04 18:17:35 +0200
committerArmand Philippot <git@armandphilippot.com>2023-11-11 18:14:41 +0100
commitbe61ffb6fe500cdbfa83b9cd131b8e72779f23c2 (patch)
tree9ac57f4fac173e13c0a461d75a206819be4f3c6f /src/components/molecules/buttons/back-to-top.stories.tsx
parenta724b4b38bacc631410627395b0d1190a0e8de0d (diff)
refactor(components): rewrite BackToTop component
* replace `link` prop with `anchor` prop * add a `label` prop to let consumer handle the accessible name
Diffstat (limited to 'src/components/molecules/buttons/back-to-top.stories.tsx')
-rw-r--r--src/components/molecules/buttons/back-to-top.stories.tsx47
1 files changed, 0 insertions, 47 deletions
diff --git a/src/components/molecules/buttons/back-to-top.stories.tsx b/src/components/molecules/buttons/back-to-top.stories.tsx
deleted file mode 100644
index 40acd33..0000000
--- a/src/components/molecules/buttons/back-to-top.stories.tsx
+++ /dev/null
@@ -1,47 +0,0 @@
-import type { ComponentMeta, ComponentStory } from '@storybook/react';
-import { BackToTop as BackToTopComponent } from './back-to-top';
-
-/**
- * BackToTop - Storybook Meta
- */
-export default {
- title: 'Molecules/Buttons',
- component: BackToTopComponent,
- argTypes: {
- className: {
- control: {
- type: 'text',
- },
- description: 'Set additional classnames to the button wrapper.',
- table: {
- category: 'Styles',
- },
- type: {
- name: 'string',
- required: false,
- },
- },
- to: {
- control: {
- type: 'text',
- },
- description: 'An element id (without hashtag) to use as anchor.',
- type: {
- name: 'string',
- required: true,
- },
- },
- },
-} as ComponentMeta<typeof BackToTopComponent>;
-
-const Template: ComponentStory<typeof BackToTopComponent> = (args) => (
- <BackToTopComponent {...args} />
-);
-
-/**
- * Buttons Stories - Back to top
- */
-export const BackToTop = Template.bind({});
-BackToTop.args = {
- to: 'top',
-};