@myelmut/design-system 0.1.175 → 0.1.176
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -4,7 +4,7 @@ import { Meta, StoryObj } from '@storybook/react-vite';
|
|
|
4
4
|
|
|
5
5
|
import { Tab } from './Tab';
|
|
6
6
|
|
|
7
|
-
import {
|
|
7
|
+
import { Text } from '../../../components';
|
|
8
8
|
|
|
9
9
|
const meta = {
|
|
10
10
|
title: 'Components/Navigation/Tab',
|
|
@@ -66,28 +66,24 @@ export const Default: Story = {
|
|
|
66
66
|
render: (args) => (
|
|
67
67
|
<Tab.Wrapper {...args}>
|
|
68
68
|
<Tab.Content id="complete">
|
|
69
|
-
<
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
planImageAlt="full cat"
|
|
78
|
-
/>
|
|
69
|
+
<div className="p-4">
|
|
70
|
+
<Text mobileSize="Body" desktopSize="Body" weight="bold">
|
|
71
|
+
100% Elmut
|
|
72
|
+
</Text>
|
|
73
|
+
<Text mobileSize="Small-text" desktopSize="Small-text" className="mt-2">
|
|
74
|
+
Uniquement du Elmut pour couvrir l'intégralité des besoins caloriques.
|
|
75
|
+
</Text>
|
|
76
|
+
</div>
|
|
79
77
|
</Tab.Content>
|
|
80
78
|
<Tab.Content id="half">
|
|
81
|
-
<
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
planImageAlt="full cat"
|
|
90
|
-
/>
|
|
79
|
+
<div className="p-4">
|
|
80
|
+
<Text mobileSize="Body" desktopSize="Body" weight="bold">
|
|
81
|
+
50% Elmut
|
|
82
|
+
</Text>
|
|
83
|
+
<Text mobileSize="Small-text" desktopSize="Small-text" className="mt-2">
|
|
84
|
+
Du Elmut pour couvrir 50% des besoins caloriques de votre animal.
|
|
85
|
+
</Text>
|
|
86
|
+
</div>
|
|
91
87
|
</Tab.Content>
|
|
92
88
|
</Tab.Wrapper>
|
|
93
89
|
),
|