Path: blob/master/src/packages/next/components/about/title-component.tsx
1450 views
import { Flex, Typography } from "antd";1import { TitleProps } from "antd/es/typography/Title";23import { COLORS } from "@cocalc/util/theme";45export interface TitleComponentProps {6name: string;7jobTitle?: string;8level?: TitleProps['level'];9}1011export const TitleComponent = (12{13name,14jobTitle,15level = 3,16}: TitleComponentProps17) => (18<Flex19justify="space-between"20align="baseline"21wrap="wrap"22style={{23marginBottom: "24px"24}}>25<Typography.Title26style={{27margin: 0,28}}29level={level}30>{name}</Typography.Title>31{jobTitle && (32<Typography.Title33style={{34margin: 0,35color: COLORS.GRAY,36}}37level={level}38>{jobTitle}</Typography.Title>39)}40</Flex>41);424344