import clsx from 'clsx'; import React from 'react'; import styles from './styles.scss'; type IconFieldProps = { icon?: React.ReactNode; className?: string; iconClassName?: string; title?: string; }; const IconField: React.FC = (props) => { return (
{props.children}
{props.icon}
); }; IconField.defaultProps = { // @ts-expect-error TS(2322): Type 'null' is not assignable to type 'string | un... Remove this comment to see the full error message title: null, }; export default IconField;