Files
dmail-front/src/components/Error.tsx
T
2025-04-28 10:15:35 +03:30

15 lines
270 B
TypeScript

import { FC } from 'react'
type Props = {
errorText: string
}
const Error: FC<Props> = (props: Props) => {
return (
<div className='mt-1.5 font-normal text-red-500 text-[11px]'>
{props.errorText}
</div>
)
}
export default Error