import { assignInlineVars } from '@vanilla-extract/dynamic'; import type { CSSProperties, ReactNode } from 'react'; import { EmptySvg } from './empty-svg'; import * as styles from './index.css'; type ContainerStyleProps = { width?: string; height?: string; fontSize?: string; }; export type EmptyContentProps = { containerStyle?: ContainerStyleProps; title?: ReactNode; description?: ReactNode; descriptionStyle?: CSSProperties; }; export const Empty = ({ containerStyle, title, description, descriptionStyle, }: EmptyContentProps) => { const cssVar = assignInlineVars({ [styles.svgWidth]: containerStyle?.width, [styles.svgHeight]: containerStyle?.height, [styles.svgFontSize]: containerStyle?.fontSize, }); return (
{title && (

{title}

)} {description && (

{description}

)}
); }; export default Empty;