diff --git a/packages/react/src/App.tsx b/packages/react/src/App.tsx index 46262eb..c9dcdd7 100644 --- a/packages/react/src/App.tsx +++ b/packages/react/src/App.tsx @@ -30,6 +30,9 @@ import ComponentsDialog, { import ComponentsDrawer, { tableOfContents as componentsDrawerToc, } from "./docs/components/Drawer.mdx"; +import ComponentsLabel, { + tableOfContents as componentsLabelToc, +} from "./docs/components/Label.mdx"; import ComponentsTabs, { tableOfContents as componentsTabsToc, } from "./docs/components/Tabs.mdx"; @@ -177,6 +180,14 @@ const router = createBrowserRouter( } /> + + + + } + /> pathname === "/docs/components/drawer" }, + { + path: "/docs/components/label", + name: "Label", + eq: (pathname: string) => pathname === "/docs/components/label" + }, { path: "/docs/components/tabs", name: "Tabs", diff --git a/packages/react/src/docs/components/Label.mdx b/packages/react/src/docs/components/Label.mdx new file mode 100644 index 0000000..a7b92ca --- /dev/null +++ b/packages/react/src/docs/components/Label.mdx @@ -0,0 +1,125 @@ +import { + TabProvider, TabTrigger, TabContent, TabList +} from "@components/Tabs"; +import { Story } from "@/components/Story"; +import { LoadedCode, GITHUB } from "@/components/LoadedCode"; +import { LabelDemo } from "./LabelBlocks/Preview"; +import Examples from "./LabelBlocks/Examples" + +# Label +A wrapper that used to tag and describe form elements clearly and accessibly. + + + + Preview + Code + + + + + + + + + + + +## Installation + +1. Create a new file `Label.tsx` in your component folder. +2. Copy and paste the following code into the file. + + + +## Usage + +```tsx +import { Label } from "@components/Label" +``` + +```html + + + + +``` + +## Props + +### Variants + +| Prop | Type | Default | Description | +| :--- | :--- | :------ | :---------- | +| `direction` | `"vertical" \| "horizontal"` | `"vertical"` | The direction of the label. | + +## Examples + +### Vertical + + + + Preview + Code + + + + + + + + + + + +### Horizontal + + + + Preview + Code + + + + + + + + + + + +### Invalid + + + + Preview + Code + + + + + + + + + + + +### Disabled + + + + Preview + Code + + + + + + + + + + \ No newline at end of file diff --git a/packages/react/src/docs/components/LabelBlocks/Examples/Disabled.tsx b/packages/react/src/docs/components/LabelBlocks/Examples/Disabled.tsx new file mode 100644 index 0000000..85f58d4 --- /dev/null +++ b/packages/react/src/docs/components/LabelBlocks/Examples/Disabled.tsx @@ -0,0 +1,11 @@ +import { Label } from "@components/Label"; +import { Input } from "@components/Input"; + +export function Disabled() { + return ( + + ); +} diff --git a/packages/react/src/docs/components/LabelBlocks/Examples/Horizontal.tsx b/packages/react/src/docs/components/LabelBlocks/Examples/Horizontal.tsx new file mode 100644 index 0000000..35d370c --- /dev/null +++ b/packages/react/src/docs/components/LabelBlocks/Examples/Horizontal.tsx @@ -0,0 +1,11 @@ +import { Label } from "@components/Label"; +import { Checkbox } from "@components/Checkbox"; + +export function Horizontal() { + return ( + + ); +} diff --git a/packages/react/src/docs/components/LabelBlocks/Examples/Invalid.tsx b/packages/react/src/docs/components/LabelBlocks/Examples/Invalid.tsx new file mode 100644 index 0000000..9d1c73d --- /dev/null +++ b/packages/react/src/docs/components/LabelBlocks/Examples/Invalid.tsx @@ -0,0 +1,11 @@ +import { Label } from "@components/Label"; +import { Input } from "@components/Input"; + +export function Invalid() { + return ( + + ); +} diff --git a/packages/react/src/docs/components/LabelBlocks/Examples/Vertical.tsx b/packages/react/src/docs/components/LabelBlocks/Examples/Vertical.tsx new file mode 100644 index 0000000..701c710 --- /dev/null +++ b/packages/react/src/docs/components/LabelBlocks/Examples/Vertical.tsx @@ -0,0 +1,11 @@ +import { Label } from "@components/Label"; +import { Input } from "@components/Input"; + +export function Vertical() { + return ( + + ); +} diff --git a/packages/react/src/docs/components/LabelBlocks/Examples/index.ts b/packages/react/src/docs/components/LabelBlocks/Examples/index.ts new file mode 100644 index 0000000..4b37b25 --- /dev/null +++ b/packages/react/src/docs/components/LabelBlocks/Examples/index.ts @@ -0,0 +1,12 @@ +import { Vertical } from "./Vertical"; +import { Horizontal } from "./Horizontal"; +import { Invalid } from "./Invalid"; +import { Disabled } from "./Disabled"; + +export default { + Vertical, + Horizontal, + Invalid, + Disabled, +}; + diff --git a/packages/react/src/docs/components/LabelBlocks/Preview.tsx b/packages/react/src/docs/components/LabelBlocks/Preview.tsx new file mode 100644 index 0000000..dcc9683 --- /dev/null +++ b/packages/react/src/docs/components/LabelBlocks/Preview.tsx @@ -0,0 +1,11 @@ +import { Label } from "@components/Label"; +import { Input } from "@components/Input"; + +export function LabelDemo() { + return ( + + ); +}