@ebay/ui-core-react
Version:
Skin components build off React
11 lines • 326 B
TypeScript
import { ComponentProps, FC } from "react";
import { LabelPosition } from "./types";
export type Props = {
className?: string;
stacked?: boolean;
required?: boolean;
position?: LabelPosition;
} & ComponentProps<"label">;
declare const Label: FC<Props>;
export default Label;
//# sourceMappingURL=label.d.ts.map