import styles from './Label.module.scss'; type LabelKind = 'regular' | 'settings'; const Label = ({ body, htmlFor, required = false, kind = 'regular', }: { body: string; htmlFor: string; required?: boolean; kind?: LabelKind; }) => { return ( ); }; export default Label; rel='vcs-git' href='https://git.armand.philippot.eu/www.armandphilippot.com' title='www.armandphilippot.com Git repository'/>
aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/molecules/modals/tooltip/tooltip.test.tsx
blob: 15966702f5caa11774641f2e3b7551ddd1e4394f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42