import clsx from 'clsx'; import React from 'react'; import styles from './styles.scss'; type PresenceStatusIconProps = { className?: string; dndStatus?: string; userStatus?: string; presenceStatus?: string; }; const PresenceStatusIcon: React.FC = ({ userStatus, dndStatus, presenceStatus, className, }) => { return (
); }; PresenceStatusIcon.defaultProps = { // @ts-expect-error TS(2322): Type 'null' is not assignable to type 'string | un... Remove this comment to see the full error message className: null, // @ts-expect-error TS(2322): Type 'null' is not assignable to type 'string | un... Remove this comment to see the full error message dndStatus: null, // @ts-expect-error TS(2322): Type 'null' is not assignable to type 'string | un... Remove this comment to see the full error message userStatus: null, // @ts-expect-error TS(2322): Type 'null' is not assignable to type 'string | un... Remove this comment to see the full error message presenceStatus: null, }; export default PresenceStatusIcon;