import { Flex, FlexProps, Image, SpacingValue, SystemProp, Title, } from '@mantine/core'; import { constants } from '@/configs/constants'; export interface BrandProps extends FlexProps { withSiteName?: boolean; isVertical?: boolean; logoSize?: number; typoSize?: number; spacing?: SystemProp; } const Brand: React.FC = ({ withSiteName, logoSize = 42, typoSize = 20, isVertical, spacing = 4, ...props }) => { return ( {withSiteName && {constants.siteName}} ); }; export default Brand;