persona-community-5/.pnpm-store/v3/files/bc/7b1c30299e37644b57a2390330167fb7d0277c15e147f9ff93210646cb92c5db0615fbf230b26c8ff38078801a7359b448caddd79519d397a58c920a4dd2fb
rdev-worker a1d0d1bf1c
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
build: /implement-feature community-ui --requirements 'Build the React commu...
2026-02-24 08:22:30 +00:00

11 lines
477 B
Plaintext

import * as React from 'react';
import { Primitive } from '@radix-ui/react-primitive';
type PrimitiveLabelProps = React.ComponentPropsWithoutRef<typeof Primitive.label>;
interface LabelProps extends PrimitiveLabelProps {
}
declare const Label: React.ForwardRefExoticComponent<LabelProps & React.RefAttributes<HTMLLabelElement>>;
declare const Root: React.ForwardRefExoticComponent<LabelProps & React.RefAttributes<HTMLLabelElement>>;
export { Label, type LabelProps, Root };