'use client'; /* eslint-disable jsdoc/require-jsdoc */ import * as React from 'react'; import { usePlatform } from '../../hooks/usePlatform'; import type { HasChildren } from '../../types'; import { Caption } from '../Typography/Caption/Caption'; import { Footnote } from '../Typography/Footnote/Footnote'; import { Text } from '../Typography/Text/Text'; import { Title } from '../Typography/Title/Title'; import styles from './Alert.module.css'; interface AlertTypography extends HasChildren { 'id': string; 'data-testid'?: string; } export const AlertTitle = (props: AlertTypography): React.ReactNode => { const platform = usePlatform(); switch (platform) { case 'ios': return ; default: return <Title className={styles.title} weight="2" level="2" {...props} />; } }; export const AlertDescription = (props: AlertTypography): React.ReactNode => { const platform = usePlatform(); switch (platform) { case 'vkcom': return <Footnote className={styles.description} {...props} />; case 'ios': return <Caption className={styles.description} {...props} />; default: return <Text Component="span" className={styles.description} weight="3" {...props} />; } };