UNPKG

@bigbinary/neetoui

Version:

neetoUI drives the experience at all neeto products

27 lines (24 loc) 697 B
import React from "react"; import { TooltipProps } from "./Tooltip"; import { ButtonProps } from "./Button"; import { PopoverProps } from "./Popover"; export type LabelProps = { className?: string; required?: boolean; helpIconProps?: { onClick?: () => void; icon?: any; tooltipProps?: TooltipProps; popoverProps?: { title?: string; description?: React.ReactNode; helpLinkProps?: ButtonProps; } & PopoverProps; className?: string; } & React.SVGProps<SVGSVGElement>; } & React.DetailedHTMLProps< React.LabelHTMLAttributes<HTMLLabelElement>, HTMLLabelElement > & { [key: string]: any }; const Label: React.FC<LabelProps>; export default Label;