UNPKG

@re-flex/ui

Version:
14 lines (13 loc) 451 B
import { SXBaseProps } from "@re-flex/styled/SX"; import { TextProps } from "@re-flex/styled/Typography"; import React from "react"; export declare type CardHeaderProps = SXBaseProps & { avatar?: React.ReactNode; title?: React.ReactNode; subtitle?: React.ReactNode; actions?: React.ReactNode; titleProps?: TextProps; subtitleProps?: TextProps; }; declare const CardHeader: React.FC<CardHeaderProps>; export default CardHeader;