fannypack-v5
Version:
An accessible, composable, and friendly React UI Kit
15 lines (12 loc) • 338 B
text/typescript
import { css, cssClass } from '../styled';
import { space, theme } from '../utils';
export const Overlay = (styleProps) => cssClass`
& {
${theme(styleProps.themeKey, `css.root`)(styleProps)};
}
`;
export const OverlayDisclosure = (styleProps) => cssClass`
& {
${theme(styleProps.themeKey, `css.root`)(styleProps)};
}
`;