mirror of
https://github.com/utopia-os/utopia-ui.git
synced 2025-12-13 07:46:10 +00:00
9 lines
205 B
TypeScript
9 lines
205 B
TypeScript
import * as React from "react"
|
|
|
|
function ErrorText({styleClass, children}){
|
|
return(
|
|
<p className={`tw-text-center tw-text-error ${styleClass}`}>{children}</p>
|
|
)
|
|
}
|
|
|
|
export default ErrorText |