UNPKG

ar-design

Version:

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

11 lines (10 loc) 271 B
import { IChildren, IStatus, IVariant } from "../../../libs/types/IGlobalProps"; interface IProps extends IChildren, IVariant<{ component: "card"; }>, IStatus<{ component: "card"; }> { title?: string; actions?: React.JSX.Element; } export default IProps;