ar-design
Version:
AR Design is a (react | nextjs) ui library.
8 lines (7 loc) • 414 B
TypeScript
import { IChildren, IUpperCase } from "../../../../libs/types/IGlobalProps";
interface IProps extends IChildren, IUpperCase, React.HTMLAttributes<HTMLHeadingElement> {
Level: "h1" | "h2" | "h3" | "h4" | "h5" | "h6";
align?: "left" | "center" | "right";
size?: "xx-small" | "x-small" | "small" | "medium" | "large" | "x-large" | "xx-large" | "xxx-large" | "smaller" | "larger";
}
export default IProps;