@kuma-ui/system
Version:
🐻 Kuma UI is a utility-first, zero-runtime CSS-in-JS library that offers an outstanding developer experience and optimized performance.
10 lines (7 loc) • 300 B
TypeScript
import { CSSProperties } from '../types.js';
import { ShadowKeys } from '../keys.js';
import 'csstype';
import '@kuma-ui/sheet';
type ShadowProps = Partial<CSSProperties<"boxShadow" | "textShadow">>;
declare const shadowMappings: Record<ShadowKeys, string>;
export { ShadowProps, shadowMappings };