UNPKG

grepsr-ui-elements

Version:

17 lines (16 loc) 458 B
import { ReactNode } from "react"; interface GrepsrSecondaryCardProps { leftHeader?: ReactNode | string | any; rightHeader?: Date | any; children?: ReactNode | any; iconImg?: string | any | null; sx?: any; borderBottom?: any; } export { GrepsrSecondaryCardProps }; declare const GrepsrSecondaryCard: { (props: GrepsrSecondaryCardProps): JSX.Element; defaultProps: {}; propTypes: {}; }; export default GrepsrSecondaryCard;