UNPKG

@krowdy-ui/views

Version:

React components that implement Google's Material Design.

23 lines (18 loc) 480 B
interface IClassObject { container?: string, content?: string, expandDetails?: string, heading?: string, size?: string, } type TypeOnchange = (event: any) => void export type CardExpand = { classes?: IClassObject, content?: React.ReactNode | string, defaultExpanded?: boolean, expandIcon?: React.ReactNode, onChange?: TypeOnchange, title?: React.ReactNode | string }; declare const CardExpand: React.ComponentType<CardExpand>; export default CardExpand;