@chakra-ui/react
Version:
Responsive and accessible React UI components built with React and Emotion
13 lines (12 loc) • 439 B
TypeScript
import { type HTMLChakraProps } from "../styled-system";
export interface ThemeProps extends HTMLChakraProps<"div"> {
/**
* The appearance of the theme.
*/
appearance?: "light" | "dark";
/**
* Whether to apply the theme background and color.
*/
hasBackground?: boolean;
}
export declare const Theme: import("react").ForwardRefExoticComponent<ThemeProps & import("react").RefAttributes<HTMLDivElement>>;