import type { FC } from 'react'; import { EmojiHTML } from '@/mastodon/components/emoji/html'; import type { useElementHandledLink } from '@/mastodon/components/status/handled_link'; import type { FieldData } from '@/mastodon/reducers/slices/profile_edit'; import classes from '../styles.module.scss'; export const AccountField: FC< FieldData & Partial> > = ({ onElement, ...field }) => { return ( <> ); };