@re-flex/ui
Version:
Re-Flex ui library
14 lines (13 loc) • 451 B
TypeScript
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;