import * as React from 'react' import type { ExtendsUnion, FontWeight, TextColor } from '@latitude-data/client' import Text from '../text' export type AlertFontWeight = ExtendsUnion< FontWeight, 'normal' | 'medium' | 'bold' > type Props = React.HTMLAttributes & { fontWeight?: AlertFontWeight color: TextColor centered?: boolean children: React.ReactNode } function AlertText({ fontWeight = 'normal', centered = true, color, children, ...props }: Props) { const TextComponent = (() => { switch (fontWeight) { case 'medium': return Text.H5M case 'bold': return Text.H5B default: return Text.H5 } })() return ( {children} ) } export default AlertText