UNPKG

@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.

38 lines (36 loc) 1.34 kB
// src/props/border.ts var borderMappings = { border: "border", borderTop: "border-top", borderRight: "border-right", borderLeft: "border-left", borderBottom: "border-bottom", borderX: "border-left,border-right", borderY: "border-top,border-bottom", borderRadius: "border-radius", borderTopLeftRadius: "border-top-left-radius", borderTopRightRadius: "border-top-right-radius", borderBottomLeftRadius: "border-bottom-left-radius", borderBottomRightRadius: "border-bottom-right-radius", borderStyle: "border-style", borderTopStyle: "border-top-style", borderBottomStyle: "border-bottom-style", borderLeftStyle: "border-left-style", borderRightStyle: "border-right-style", borderWidth: "border-width", borderTopWidth: "border-top-width", borderBottomWidth: "border-bottom-width", borderLeftWidth: "border-left-width", borderRightWidth: "border-right-width", borderStart: "border-inline-start", borderEnd: "border-inline-end", borderStartWidth: "border-inline-start-width", borderEndWidth: "border-inline-end-width", borderStartStyle: "border-inline-start-style", borderEndStyle: "border-inline-end-style", borderStartRadius: "border-top-left-radius,border-bottom-left-radius", borderEndRadius: "border-top-right-radius,border-bottom-right-radius" }; export { borderMappings };