import clsx from "clsx"; import Stop from "../../icons/stop"; import styles from "./error.module.css"; interface ErrorProps { label?: string; size?: "small" | "large"; style?: React.CSSProperties; id?: string; } const Error: React.ComponentType> = ({ label = "Error", children, size, style, id, }) => { return ( ); }; export default Error;