import { borderRadius, borderWidth } from "./borders"; import { boxShadow } from "./box-shadow"; import { colors, borderColors } from "./colors"; import { fontFamily } from "./font-family"; import { fontSize } from "./font-size"; import { fontWeight } from "./font-weight"; import { height, maxHeight } from "./height"; import { letterSpacing } from "./letter-spacing"; import { lineHeight } from "./line-height"; import { margin } from "./margin"; import { padding } from "./padding"; import { screens } from "./screens"; import { maxWidth, minWidth, width } from "./width"; import { willChange } from "./will-change"; import { zIndex } from "./z-index"; export const tokens = { borderColors, borderRadius, borderWidth, boxShadow, colors, fontFamily, fontSize, fontWeight, height, letterSpacing, lineHeight, margin, maxHeight, maxWidth, minWidth, padding, screens, width, willChange, zIndex, }; // Deprecated: tokens should be exported as part of the tokens object // These exports should be removed in arrow-ds 2.0 export * from "./borders"; export * from "./colors"; export * from "./height"; export * from "./margin"; export * from "./z-index";