feat(SW-2178): Changed to new buttons for summary inside enter details

Approved-by: Michael Zetterberg
Approved-by: Matilda Landström
This commit is contained in:
Erik Tiekstra
2025-04-11 15:13:37 +00:00
parent 8961cbd9d5
commit f62723c6e5
15 changed files with 363 additions and 101 deletions

View File

@@ -4,7 +4,7 @@ import type { Meta, StoryObj } from '@storybook/react'
import { fn } from '@storybook/test'
import { MaterialSymbol } from 'react-material-symbols'
import { MaterialIcon } from '../Icons/MaterialIcon/MaterialIcon.tsx'
import { ChipButton } from './ChipButton.tsx'
import { config as chipButtonConfig } from './variants'
@@ -35,7 +35,7 @@ export const Default: Story = {
children: (
<>
Button Chip
<MaterialSymbol icon="chevron_right" size={20} />
<MaterialIcon icon="chevron_right" size={20} />
</>
),
},
@@ -48,7 +48,7 @@ export const Outlined: Story = {
children: (
<>
Button Chip
<MaterialSymbol icon="keyboard_arrow_down" size={20} />
<MaterialIcon icon="keyboard_arrow_down" size={20} />
</>
),
},