@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) • 1.07 kB
TypeScript
import { TextKeys } from '../keys.js';
import { CSSProperties } from '../types.js';
import 'csstype';
import '@kuma-ui/sheet';
type TextProps = Partial<CSSProperties<"textAlign"> & CSSProperties<"textAlignLast"> & CSSProperties<"textCombineUpright"> & CSSProperties<"textDecoration"> & CSSProperties<"textDecorationColor"> & CSSProperties<"textDecorationLine"> & CSSProperties<"textDecorationSkipInk"> & CSSProperties<"textDecorationStyle"> & CSSProperties<"textDecorationThickness"> & CSSProperties<"textEmphasis"> & CSSProperties<"textEmphasisColor"> & CSSProperties<"textEmphasisPosition"> & CSSProperties<"textEmphasisStyle"> & CSSProperties<"textIndent", true> & CSSProperties<"textJustify"> & CSSProperties<"textOrientation"> & CSSProperties<"textOverflow"> & CSSProperties<"textRendering"> & CSSProperties<"textShadow"> & CSSProperties<"textSizeAdjust"> & CSSProperties<"textTransform"> & CSSProperties<"textUnderlineOffset"> & CSSProperties<"textUnderlinePosition">>;
declare const textMappings: Record<TextKeys, string>;
export { TextProps, textMappings };