import { CSSProperties } from 'react'; import Empty from './Empty'; import style from './EmptyPage.module.scss'; interface EmptyPageProps { text?: string; injectedStyles?: CSSProperties; variant?: 'error'; } export default function EmptyPage({ text, injectedStyles, variant }: EmptyPageProps) { return (