UNPKG

@baseplate-dev/ui-components

Version:

Shared UI component library

10 lines 376 B
import type * as React from 'react'; import { Label as LabelPrimitive } from 'radix-ui'; /** * Renders an accessible label associated with controls. * * https://ui.shadcn.com/docs/components/label */ declare function Label({ className, ...props }: React.ComponentProps<typeof LabelPrimitive.Root>): React.ReactElement; export { Label }; //# sourceMappingURL=label.d.ts.map