Interface TitleCardProps

interface TitleCardProps {
    children?: ReactNode;
    className?: string;
    hideTitle?: boolean;
    title?: string;
    topMargin?: string;
    TopSideButtons?: ReactNode;
}

Properties

children?: ReactNode
className?: string
hideTitle?: boolean
title?: string
topMargin?: string
TopSideButtons?: ReactNode