@gv-tech/ui-core 1.1.0

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.
Files changed (52) hide show
  1. package/package.json +42 -0
  2. package/src/contracts/accordion.ts +23 -0
  3. package/src/contracts/alert-dialog.ts +48 -0
  4. package/src/contracts/alert.ts +17 -0
  5. package/src/contracts/aspect-ratio.ts +7 -0
  6. package/src/contracts/avatar.ts +17 -0
  7. package/src/contracts/badge.ts +7 -0
  8. package/src/contracts/breadcrumb.ts +37 -0
  9. package/src/contracts/button.ts +17 -0
  10. package/src/contracts/calendar.ts +4 -0
  11. package/src/contracts/card.ts +11 -0
  12. package/src/contracts/carousel.ts +29 -0
  13. package/src/contracts/chart.ts +31 -0
  14. package/src/contracts/checkbox.ts +11 -0
  15. package/src/contracts/collapsible.ts +21 -0
  16. package/src/contracts/command.ts +43 -0
  17. package/src/contracts/context-menu.ts +78 -0
  18. package/src/contracts/dialog.ts +29 -0
  19. package/src/contracts/drawer.ts +39 -0
  20. package/src/contracts/dropdown-menu.ts +87 -0
  21. package/src/contracts/form.ts +29 -0
  22. package/src/contracts/hover-card.ts +21 -0
  23. package/src/contracts/input.ts +11 -0
  24. package/src/contracts/label.ts +7 -0
  25. package/src/contracts/menubar.ts +86 -0
  26. package/src/contracts/navigation-menu.ts +55 -0
  27. package/src/contracts/pagination.ts +38 -0
  28. package/src/contracts/popover.ts +28 -0
  29. package/src/contracts/progress.ts +4 -0
  30. package/src/contracts/radio.ts +16 -0
  31. package/src/contracts/resizable.ts +36 -0
  32. package/src/contracts/scroll-area.ts +15 -0
  33. package/src/contracts/search.ts +13 -0
  34. package/src/contracts/select.ts +64 -0
  35. package/src/contracts/separator.ts +5 -0
  36. package/src/contracts/sheet.ts +58 -0
  37. package/src/contracts/skeleton.ts +6 -0
  38. package/src/contracts/slider.ts +15 -0
  39. package/src/contracts/sonner.ts +15 -0
  40. package/src/contracts/switch.ts +11 -0
  41. package/src/contracts/table.ts +41 -0
  42. package/src/contracts/tabs.ts +31 -0
  43. package/src/contracts/text.ts +12 -0
  44. package/src/contracts/textarea.ts +7 -0
  45. package/src/contracts/theme-provider.ts +14 -0
  46. package/src/contracts/theme-toggle.ts +15 -0
  47. package/src/contracts/toast.ts +15 -0
  48. package/src/contracts/toaster.ts +3 -0
  49. package/src/contracts/toggle-group.ts +23 -0
  50. package/src/contracts/toggle.ts +49 -0
  51. package/src/contracts/tooltip.ts +28 -0
  52. package/src/index.ts +327 -0
package/package.json ADDED
@@ -0,0 +1,42 @@
1
+ {
2
+ "name": "@gv-tech/ui-core",
3
+ "version": "1.1.0",
4
+ "description": "Shared component contracts (props, variants, sizes) for the GV Tech design system",
5
+ "repository": {
6
+ "type": "git",
7
+ "url": "https://github.com/Garcia-Ventures/gvtech-design.git",
8
+ "directory": "packages/ui-core"
9
+ },
10
+ "license": "MIT",
11
+ "author": "Eric N. Garcia <eng618@garciaericn.com>",
12
+ "exports": {
13
+ ".": {
14
+ "types": "./src/index.ts",
15
+ "default": "./src/index.ts"
16
+ },
17
+ "./contracts/*": {
18
+ "types": "./src/contracts/*.ts",
19
+ "default": "./src/contracts/*.ts"
20
+ }
21
+ },
22
+ "main": "src/index.ts",
23
+ "types": "src/index.ts",
24
+ "files": [
25
+ "src"
26
+ ],
27
+ "scripts": {
28
+ "build": "echo 'No build step — consumed as TS source by sibling packages'",
29
+ "lint": "echo 'Linted from workspace root'",
30
+ "test": "echo 'No tests yet'",
31
+ "typecheck": "npx tsc --noEmit"
32
+ },
33
+ "dependencies": {
34
+ "class-variance-authority": "^0.7.1"
35
+ },
36
+ "peerDependencies": {
37
+ "react": ">=18"
38
+ },
39
+ "publishConfig": {
40
+ "access": "public"
41
+ }
42
+ }
@@ -0,0 +1,23 @@
1
+ import * as React from 'react';
2
+
3
+ export interface AccordionBaseProps {
4
+ className?: string;
5
+ children?: React.ReactNode;
6
+ }
7
+
8
+ export interface AccordionItemBaseProps {
9
+ value: string;
10
+ disabled?: boolean;
11
+ className?: string;
12
+ children?: React.ReactNode;
13
+ }
14
+
15
+ export interface AccordionTriggerBaseProps {
16
+ className?: string;
17
+ children?: React.ReactNode;
18
+ }
19
+
20
+ export interface AccordionContentBaseProps {
21
+ className?: string;
22
+ children?: React.ReactNode;
23
+ }
@@ -0,0 +1,48 @@
1
+ import * as React from 'react';
2
+
3
+ export interface AlertDialogBaseProps {
4
+ open?: boolean;
5
+ onOpenChange?: (open: boolean) => void;
6
+ children?: React.ReactNode;
7
+ }
8
+
9
+ export interface AlertDialogContentBaseProps {
10
+ className?: string;
11
+ children?: React.ReactNode;
12
+ }
13
+
14
+ export interface AlertDialogHeaderBaseProps {
15
+ className?: string;
16
+ children?: React.ReactNode;
17
+ }
18
+
19
+ export interface AlertDialogFooterBaseProps {
20
+ className?: string;
21
+ children?: React.ReactNode;
22
+ }
23
+
24
+ export interface AlertDialogTitleBaseProps {
25
+ className?: string;
26
+ children?: React.ReactNode;
27
+ }
28
+
29
+ export interface AlertDialogDescriptionBaseProps {
30
+ className?: string;
31
+ children?: React.ReactNode;
32
+ }
33
+
34
+ export interface AlertDialogActionBaseProps {
35
+ className?: string;
36
+ children?: React.ReactNode;
37
+ }
38
+
39
+ export interface AlertDialogCancelBaseProps {
40
+ className?: string;
41
+ children?: React.ReactNode;
42
+ }
43
+
44
+ export interface AlertDialogTriggerBaseProps {
45
+ className?: string;
46
+ children?: React.ReactNode;
47
+ asChild?: boolean;
48
+ }
@@ -0,0 +1,17 @@
1
+ import * as React from 'react';
2
+
3
+ export interface AlertBaseProps {
4
+ variant?: 'default' | 'destructive' | 'warning' | 'info';
5
+ className?: string;
6
+ children?: React.ReactNode;
7
+ }
8
+
9
+ export interface AlertTitleBaseProps {
10
+ className?: string;
11
+ children?: React.ReactNode;
12
+ }
13
+
14
+ export interface AlertDescriptionBaseProps {
15
+ className?: string;
16
+ children?: React.ReactNode;
17
+ }
@@ -0,0 +1,7 @@
1
+ import * as React from 'react';
2
+
3
+ export interface AspectRatioBaseProps {
4
+ ratio?: number;
5
+ className?: string;
6
+ children?: React.ReactNode;
7
+ }
@@ -0,0 +1,17 @@
1
+ import * as React from 'react';
2
+
3
+ export interface AvatarBaseProps {
4
+ className?: string;
5
+ children?: React.ReactNode;
6
+ }
7
+
8
+ export interface AvatarImageBaseProps {
9
+ className?: string;
10
+ src?: string;
11
+ alt?: string;
12
+ }
13
+
14
+ export interface AvatarFallbackBaseProps {
15
+ className?: string;
16
+ children?: React.ReactNode;
17
+ }
@@ -0,0 +1,7 @@
1
+ import * as React from 'react';
2
+
3
+ export interface BadgeBaseProps {
4
+ variant?: 'default' | 'secondary' | 'destructive' | 'outline';
5
+ className?: string;
6
+ children?: React.ReactNode;
7
+ }
@@ -0,0 +1,37 @@
1
+ import * as React from 'react';
2
+
3
+ export interface BreadcrumbBaseProps {
4
+ className?: string;
5
+ children?: React.ReactNode;
6
+ }
7
+
8
+ export interface BreadcrumbListBaseProps {
9
+ className?: string;
10
+ children?: React.ReactNode;
11
+ }
12
+
13
+ export interface BreadcrumbItemBaseProps {
14
+ className?: string;
15
+ children?: React.ReactNode;
16
+ }
17
+
18
+ export interface BreadcrumbLinkBaseProps {
19
+ className?: string;
20
+ children?: React.ReactNode;
21
+ asChild?: boolean;
22
+ }
23
+
24
+ export interface BreadcrumbPageBaseProps {
25
+ className?: string;
26
+ children?: React.ReactNode;
27
+ }
28
+
29
+ export interface BreadcrumbSeparatorBaseProps {
30
+ className?: string;
31
+ children?: React.ReactNode;
32
+ }
33
+
34
+ export interface BreadcrumbEllipsisBaseProps {
35
+ className?: string;
36
+ children?: React.ReactNode;
37
+ }
@@ -0,0 +1,17 @@
1
+ // Shared Button variant and size contracts.
2
+ // Both ui-web and ui-native implementations must satisfy these types.
3
+
4
+ export const buttonVariantValues = ['default', 'destructive', 'outline', 'secondary', 'ghost', 'link'] as const;
5
+ export type ButtonVariant = (typeof buttonVariantValues)[number];
6
+
7
+ export const buttonSizeValues = ['default', 'sm', 'lg', 'icon'] as const;
8
+ export type ButtonSize = (typeof buttonSizeValues)[number];
9
+
10
+ // Platform-agnostic props shared by every Button implementation.
11
+ // Does NOT include variant/size — those come from platform-specific CVA bindings
12
+ // to avoid type conflicts with VariantProps.
13
+ export interface ButtonBaseProps {
14
+ disabled?: boolean;
15
+ className?: string;
16
+ children?: React.ReactNode;
17
+ }
@@ -0,0 +1,4 @@
1
+ export interface CalendarBaseProps {
2
+ className?: string;
3
+ showOutsideDays?: boolean;
4
+ }
@@ -0,0 +1,11 @@
1
+ // Shared Card contracts.
2
+ // Both ui-web and ui-native implementations must satisfy these types.
3
+
4
+ // Platform-agnostic props shared by every Card sub-component.
5
+ export interface CardBaseProps {
6
+ className?: string;
7
+ children?: React.ReactNode;
8
+ }
9
+
10
+ // Card exports the same sub-components on both platforms.
11
+ export type CardSubComponent = 'Card' | 'CardHeader' | 'CardTitle' | 'CardDescription' | 'CardContent' | 'CardFooter';
@@ -0,0 +1,29 @@
1
+ import * as React from 'react';
2
+
3
+ export interface CarouselBaseProps {
4
+ className?: string;
5
+ children?: React.ReactNode;
6
+ orientation?: 'horizontal' | 'vertical';
7
+ }
8
+
9
+ export interface CarouselContentBaseProps {
10
+ className?: string;
11
+ children?: React.ReactNode;
12
+ }
13
+
14
+ export interface CarouselItemBaseProps {
15
+ className?: string;
16
+ children?: React.ReactNode;
17
+ }
18
+
19
+ export interface CarouselPreviousBaseProps {
20
+ className?: string;
21
+ variant?: string;
22
+ size?: string;
23
+ }
24
+
25
+ export interface CarouselNextBaseProps {
26
+ className?: string;
27
+ variant?: string;
28
+ size?: string;
29
+ }
@@ -0,0 +1,31 @@
1
+ import * as React from 'react';
2
+
3
+ export type ChartConfig = {
4
+ [k in string]: {
5
+ label?: React.ReactNode;
6
+ icon?: React.ComponentType;
7
+ } & ({ color?: string; theme?: never } | { color?: never; theme: Record<string, string> });
8
+ };
9
+
10
+ export interface ChartContainerBaseProps {
11
+ config: ChartConfig;
12
+ className?: string;
13
+ children?: React.ReactNode;
14
+ id?: string;
15
+ }
16
+
17
+ export interface ChartTooltipContentBaseProps {
18
+ hideLabel?: boolean;
19
+ hideIndicator?: boolean;
20
+ indicator?: 'line' | 'dot' | 'dashed';
21
+ nameKey?: string;
22
+ labelKey?: string;
23
+ className?: string;
24
+ labelClassName?: string;
25
+ }
26
+
27
+ export interface ChartLegendContentBaseProps {
28
+ hideIcon?: boolean;
29
+ nameKey?: string;
30
+ className?: string;
31
+ }
@@ -0,0 +1,11 @@
1
+ // Shared Checkbox contracts.
2
+ // Both ui-web and ui-native implementations must satisfy these types.
3
+
4
+ // Platform-agnostic props shared by every Checkbox implementation.
5
+ export interface CheckboxBaseProps {
6
+ checked?: boolean;
7
+ defaultChecked?: boolean;
8
+ disabled?: boolean;
9
+ className?: string;
10
+ onCheckedChange?: (checked: boolean) => void;
11
+ }
@@ -0,0 +1,21 @@
1
+ import * as React from 'react';
2
+
3
+ export interface CollapsibleBaseProps {
4
+ open?: boolean;
5
+ onOpenChange?: (open: boolean) => void;
6
+ disabled?: boolean;
7
+ children?: React.ReactNode;
8
+ className?: string;
9
+ }
10
+
11
+ export interface CollapsibleTriggerBaseProps {
12
+ asChild?: boolean;
13
+ children?: React.ReactNode;
14
+ className?: string;
15
+ }
16
+
17
+ export interface CollapsibleContentBaseProps {
18
+ asChild?: boolean;
19
+ children?: React.ReactNode;
20
+ className?: string;
21
+ }
@@ -0,0 +1,43 @@
1
+ import * as React from 'react';
2
+
3
+ export interface CommandBaseProps {
4
+ className?: string;
5
+ children?: React.ReactNode;
6
+ }
7
+
8
+ export interface CommandInputBaseProps {
9
+ className?: string;
10
+ placeholder?: string;
11
+ }
12
+
13
+ export interface CommandListBaseProps {
14
+ className?: string;
15
+ children?: React.ReactNode;
16
+ }
17
+
18
+ export interface CommandEmptyBaseProps {
19
+ className?: string;
20
+ children?: React.ReactNode;
21
+ }
22
+
23
+ export interface CommandGroupBaseProps {
24
+ className?: string;
25
+ children?: React.ReactNode;
26
+ heading?: React.ReactNode;
27
+ }
28
+
29
+ export interface CommandItemBaseProps {
30
+ className?: string;
31
+ children?: React.ReactNode;
32
+ onSelect?: (value: string) => void;
33
+ value?: string;
34
+ }
35
+
36
+ export interface CommandSeparatorBaseProps {
37
+ className?: string;
38
+ }
39
+
40
+ export interface CommandShortcutBaseProps {
41
+ className?: string;
42
+ children?: React.ReactNode;
43
+ }
@@ -0,0 +1,78 @@
1
+ import * as React from 'react';
2
+
3
+ export interface ContextMenuBaseProps {
4
+ children?: React.ReactNode;
5
+ }
6
+
7
+ export interface ContextMenuTriggerBaseProps {
8
+ children: React.ReactNode;
9
+ disabled?: boolean;
10
+ }
11
+
12
+ export interface ContextMenuContentBaseProps {
13
+ className?: string;
14
+ children?: React.ReactNode;
15
+ }
16
+
17
+ export interface ContextMenuItemBaseProps {
18
+ className?: string;
19
+ children?: React.ReactNode;
20
+ inset?: boolean;
21
+ disabled?: boolean;
22
+ onSelect?: (event: Event) => void;
23
+ }
24
+
25
+ export interface ContextMenuCheckboxItemBaseProps {
26
+ className?: string;
27
+ children?: React.ReactNode;
28
+ checked?: boolean | 'indeterminate';
29
+ onCheckedChange?: (checked: boolean) => void;
30
+ disabled?: boolean;
31
+ }
32
+
33
+ export interface ContextMenuRadioItemBaseProps {
34
+ className?: string;
35
+ children?: React.ReactNode;
36
+ value: string;
37
+ disabled?: boolean;
38
+ }
39
+
40
+ export interface ContextMenuLabelBaseProps {
41
+ className?: string;
42
+ children?: React.ReactNode;
43
+ inset?: boolean;
44
+ }
45
+
46
+ export interface ContextMenuSeparatorBaseProps {
47
+ className?: string;
48
+ }
49
+
50
+ export interface ContextMenuShortcutBaseProps {
51
+ className?: string;
52
+ children?: React.ReactNode;
53
+ }
54
+
55
+ export interface ContextMenuSubBaseProps {
56
+ children?: React.ReactNode;
57
+ }
58
+
59
+ export interface ContextMenuSubTriggerBaseProps {
60
+ className?: string;
61
+ children?: React.ReactNode;
62
+ inset?: boolean;
63
+ }
64
+
65
+ export interface ContextMenuSubContentBaseProps {
66
+ className?: string;
67
+ children?: React.ReactNode;
68
+ }
69
+
70
+ export interface ContextMenuGroupBaseProps {
71
+ children?: React.ReactNode;
72
+ }
73
+
74
+ export interface ContextMenuRadioGroupBaseProps {
75
+ children?: React.ReactNode;
76
+ value?: string;
77
+ onValueChange?: (value: string) => void;
78
+ }
@@ -0,0 +1,29 @@
1
+ // Shared Dialog / Sheet contracts.
2
+ // Maps to Dialog on web, BottomSheet / Modal on native.
3
+
4
+ // Platform-agnostic props shared by every Dialog implementation.
5
+ export interface DialogBaseProps {
6
+ open?: boolean;
7
+ defaultOpen?: boolean;
8
+ onOpenChange?: (open: boolean) => void;
9
+ children?: React.ReactNode;
10
+ }
11
+
12
+ // Platform-agnostic props for Dialog content area.
13
+ export interface DialogContentBaseProps {
14
+ className?: string;
15
+ children?: React.ReactNode;
16
+ title?: string;
17
+ description?: string;
18
+ }
19
+
20
+ // Dialog exports the same sub-components on both platforms.
21
+ export type DialogSubComponent =
22
+ | 'Dialog'
23
+ | 'DialogTrigger'
24
+ | 'DialogContent'
25
+ | 'DialogHeader'
26
+ | 'DialogTitle'
27
+ | 'DialogDescription'
28
+ | 'DialogFooter'
29
+ | 'DialogClose';
@@ -0,0 +1,39 @@
1
+ import * as React from 'react';
2
+
3
+ export interface DrawerBaseProps {
4
+ children?: React.ReactNode;
5
+ shouldScaleBackground?: boolean;
6
+ }
7
+
8
+ export interface DrawerTriggerBaseProps {
9
+ children: React.ReactNode;
10
+ }
11
+
12
+ export interface DrawerContentBaseProps {
13
+ className?: string;
14
+ children?: React.ReactNode;
15
+ }
16
+
17
+ export interface DrawerHeaderBaseProps {
18
+ className?: string;
19
+ children?: React.ReactNode;
20
+ }
21
+
22
+ export interface DrawerFooterBaseProps {
23
+ className?: string;
24
+ children?: React.ReactNode;
25
+ }
26
+
27
+ export interface DrawerTitleBaseProps {
28
+ className?: string;
29
+ children?: React.ReactNode;
30
+ }
31
+
32
+ export interface DrawerDescriptionBaseProps {
33
+ className?: string;
34
+ children?: React.ReactNode;
35
+ }
36
+
37
+ export interface DrawerCloseBaseProps {
38
+ children?: React.ReactNode;
39
+ }
@@ -0,0 +1,87 @@
1
+ import * as React from 'react';
2
+
3
+ export interface DropdownMenuBaseProps {
4
+ children?: React.ReactNode;
5
+ open?: boolean;
6
+ onOpenChange?: (open: boolean) => void;
7
+ modal?: boolean;
8
+ }
9
+
10
+ export interface DropdownMenuTriggerBaseProps {
11
+ children: React.ReactNode;
12
+ asChild?: boolean;
13
+ }
14
+
15
+ export interface DropdownMenuContentBaseProps {
16
+ className?: string;
17
+ children?: React.ReactNode;
18
+ side?: 'top' | 'right' | 'bottom' | 'left';
19
+ align?: 'start' | 'center' | 'end';
20
+ sideOffset?: number;
21
+ alignOffset?: number;
22
+ }
23
+
24
+ export interface DropdownMenuItemBaseProps {
25
+ className?: string;
26
+ children?: React.ReactNode;
27
+ inset?: boolean;
28
+ disabled?: boolean;
29
+ onSelect?: (event: Event) => void;
30
+ }
31
+
32
+ export interface DropdownMenuCheckboxItemBaseProps {
33
+ className?: string;
34
+ children?: React.ReactNode;
35
+ checked?: boolean | 'indeterminate';
36
+ onCheckedChange?: (checked: boolean) => void;
37
+ disabled?: boolean;
38
+ }
39
+
40
+ export interface DropdownMenuRadioItemBaseProps {
41
+ className?: string;
42
+ children?: React.ReactNode;
43
+ value: string;
44
+ disabled?: boolean;
45
+ }
46
+
47
+ export interface DropdownMenuLabelBaseProps {
48
+ className?: string;
49
+ children?: React.ReactNode;
50
+ inset?: boolean;
51
+ }
52
+
53
+ export interface DropdownMenuSeparatorBaseProps {
54
+ className?: string;
55
+ }
56
+
57
+ export interface DropdownMenuShortcutBaseProps {
58
+ className?: string;
59
+ children?: React.ReactNode;
60
+ }
61
+
62
+ export interface DropdownMenuSubBaseProps {
63
+ children?: React.ReactNode;
64
+ open?: boolean;
65
+ onOpenChange?: (open: boolean) => void;
66
+ }
67
+
68
+ export interface DropdownMenuSubTriggerBaseProps {
69
+ className?: string;
70
+ children?: React.ReactNode;
71
+ inset?: boolean;
72
+ }
73
+
74
+ export interface DropdownMenuSubContentBaseProps {
75
+ className?: string;
76
+ children?: React.ReactNode;
77
+ }
78
+
79
+ export interface DropdownMenuGroupBaseProps {
80
+ children?: React.ReactNode;
81
+ }
82
+
83
+ export interface DropdownMenuRadioGroupBaseProps {
84
+ children?: React.ReactNode;
85
+ value?: string;
86
+ onValueChange?: (value: string) => void;
87
+ }
@@ -0,0 +1,29 @@
1
+ import * as React from 'react';
2
+
3
+ export interface FormBaseProps {
4
+ children?: React.ReactNode;
5
+ }
6
+
7
+ export interface FormItemBaseProps {
8
+ className?: string;
9
+ children?: React.ReactNode;
10
+ }
11
+
12
+ export interface FormLabelBaseProps {
13
+ className?: string;
14
+ children?: React.ReactNode;
15
+ }
16
+
17
+ export interface FormControlBaseProps {
18
+ children?: React.ReactNode;
19
+ }
20
+
21
+ export interface FormDescriptionBaseProps {
22
+ className?: string;
23
+ children?: React.ReactNode;
24
+ }
25
+
26
+ export interface FormMessageBaseProps {
27
+ className?: string;
28
+ children?: React.ReactNode;
29
+ }
@@ -0,0 +1,21 @@
1
+ import * as React from 'react';
2
+
3
+ export interface HoverCardBaseProps {
4
+ children?: React.ReactNode;
5
+ open?: boolean;
6
+ onOpenChange?: (open: boolean) => void;
7
+ openDelay?: number;
8
+ closeDelay?: number;
9
+ }
10
+
11
+ export interface HoverCardTriggerBaseProps {
12
+ children: React.ReactNode;
13
+ asChild?: boolean;
14
+ }
15
+
16
+ export interface HoverCardContentBaseProps {
17
+ className?: string;
18
+ children?: React.ReactNode;
19
+ align?: 'start' | 'center' | 'end';
20
+ sideOffset?: number;
21
+ }
@@ -0,0 +1,11 @@
1
+ // Shared Input contracts.
2
+ // Both ui-web and ui-native implementations must satisfy these types.
3
+
4
+ // Platform-agnostic props shared by every Input implementation.
5
+ // Avoids generic HTML props (value, defaultValue) that conflict with
6
+ // platform-specific typings (React DOM vs React Native).
7
+ export interface InputBaseProps {
8
+ placeholder?: string;
9
+ disabled?: boolean;
10
+ className?: string;
11
+ }
@@ -0,0 +1,7 @@
1
+ import * as React from 'react';
2
+
3
+ export interface LabelBaseProps {
4
+ className?: string;
5
+ children?: React.ReactNode;
6
+ htmlFor?: string;
7
+ }