15 lines
270 B
TypeScript
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 |