@mui/joy
Version:
Joy UI is an open-source React component library that implements MUI's own design principles. It's comprehensive and can be used in production out of the box.
15 lines (14 loc) • 413 B
TypeScript
export interface CssBaselineProps {
/**
* You can wrap a node.
*/
children?: React.ReactNode;
/**
* Disable `color-scheme` CSS property.
*
* For more details, check out https://developer.mozilla.org/en-US/docs/Web/CSS/color-scheme
* For browser support, check out https://caniuse.com/?search=color-scheme
* @default false
*/
disableColorScheme?: boolean;
}