import React, { FC, PropsWithChildren } from 'react' // card props export type CardHeaderProps = { title?: string subheader?: string className?: string style?: React.CSSProperties lg?: boolean } // standard card header title, subheader export const CardHeader: FC> = ({ title, subheader, className, style, lg, children, }) => { return (
{title}
{subheader}
{children}
) }