UNPKG

ar-design

Version:

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

11 lines (10 loc) 468 B
import { IBorder, IChildren, IColors, IIcon, ISize, IUpperCase, IVariant } from "../../../libs/types/IGlobalProps"; interface IProps extends IChildren, IVariant, IColors, IBorder, IIcon, ISize, IUpperCase, Omit<React.ButtonHTMLAttributes<HTMLButtonElement>, "color"> { shape?: "circle" | "square"; position?: { type: "fixed" | "absolute"; inset: ("top" | "right" | "bottom" | "left")[]; }; fullWidth?: boolean; } export default IProps;