UNPKG

react-base-guide

Version:

react ui components

14 lines (13 loc) 464 B
import { StyleProps } from "../../utils/add-custom-style"; import { Variant } from "./interface"; interface LabelRootProps { $variant: Variant; $label: string; $focus: boolean; $error: boolean; $warning: boolean; $success: boolean; $styled: StyleProps; } declare const LabelRoot: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, LabelRootProps, never>; export default LabelRoot;