import { Text } from "@prismicio/editor-ui"; import { clsx } from "clsx"; import type { CSSProperties, FC, PropsWithChildren } from "react"; import styles from "./BlankSlate.module.css"; interface BlankSlateProps extends PropsWithChildren { style?: CSSProperties; backgroundImage?: string; } export const BlankSlate: FC = ({ backgroundImage, style, ...props }) => { const hasBackground = backgroundImage !== undefined; return (
); }; export const BlankSlateImage: FC = (props) => (
); export const BlankSlateContent: FC = (props) => (
); export const BlankSlateTitle: FC = (props) => ( ); export const BlankSlateDescription: FC = (props) => ( ); export const BlankSlateActions: FC = (props) => (
);