import { FC } from 'react' import { Center, Text } from '@/design-system' import { useTranslation } from '@/hooks' type _NAME_Props = { example: string } export const _NAME_: FC<_NAME_Props> = ({ ...props }): JSX.Element => { const { example } = props const { t } = useTranslation() return (