UNPKG

ar-design

Version:

AR Design is a (react | nextjs) ui library.

17 lines (16 loc) 646 B
import { IBorder, IColors, IDisabled, IIcon, ISize, IUpperCase, IValidation, IVariant } from "../../../libs/types/IGlobalProps"; interface IProps extends IVariant, IColors, IBorder, IIcon, ISize, IUpperCase, IValidation, IDisabled, Omit<React.InputHTMLAttributes<HTMLInputElement>, "children" | "size" | "color"> { /** * Bileşenin başlığı veya etiket metnidir. * * Genellikle input, buton gibi öğelerin ne amaçla kullanıldığını belirtmek için görüntülenir. * * Örneğin; * * ```jsx * <Switch label="Kullanıcı Adı" /> * ``` */ label?: string; } export default IProps;