@wordpress/style-engine
Version:
A suite of parsers and compilers for WordPress styles.
23 lines (21 loc) • 454 B
text/typescript
/**
* Internal dependencies
*/
import border from './border';
import color from './color';
import dimensions from './dimensions';
import background from './background';
import shadow from './shadow';
import outline from './outline';
import spacing from './spacing';
import typography from './typography';
export const styleDefinitions = [
...border,
...color,
...dimensions,
...outline,
...spacing,
...typography,
...shadow,
...background,
];