@chakra-ui/react
Version:
Responsive and accessible React UI components built with React and Emotion
22 lines (19 loc) • 755 B
JavaScript
"use client";
import { createSlotRecipeContext } from '../../styled-system/create-slot-recipe-context.js';
const {
withProvider,
withContext,
useStyles: useEmptyStateStyles,
PropsProvider
} = createSlotRecipeContext({ key: "emptyState" });
const EmptyStateRoot = withProvider(
"div",
"root"
);
const EmptyStatePropsProvider = PropsProvider;
const EmptyStateContent = withContext("div", "content");
const EmptyStateIndicator = withContext("div", "indicator");
const EmptyStateTitle = withContext("h3", "title");
const EmptyStateDescription = withContext("p", "description");
export { EmptyStateContent, EmptyStateDescription, EmptyStateIndicator, EmptyStatePropsProvider, EmptyStateRoot, EmptyStateTitle, useEmptyStateStyles };
;