UNPKG

@atlaskit/primitives

Version:

Primitives are token-backed low-level building blocks.

20 lines (19 loc) 1.1 kB
export type { Dimension, BackgroundColor, Space, BorderColor, BorderRadius, BorderWidth, Layer, TextColor, Shadow, } from './xcss/style-maps.partial'; export { default as Box } from './components/box'; export type { BoxProps } from './components/box'; export { default as Inline } from './components/inline'; export type { InlineProps } from './components/inline'; export { xcss } from './xcss/xcss'; export type { XCSS } from './xcss/xcss'; export { default as Stack } from './components/stack'; export type { StackProps } from './components/stack'; export { default as Flex } from './components/flex'; export type { FlexProps } from './components/flex'; export { default as Grid } from './components/grid'; export type { GridProps } from './components/grid'; export { default as Bleed } from './components/bleed'; export type { BleedProps } from './components/bleed'; export { default as Text } from './components/text'; export type { TextProps } from './components/text'; export { media, UNSAFE_media, UNSAFE_BREAKPOINTS_CONFIG } from './responsive'; export type { Breakpoint } from './responsive';