@mantine/core
Version:
React components library focused on usability, accessibility and developer experience
36 lines (35 loc) • 634 B
JavaScript
"use client";
//#region packages/@mantine/core/src/components/Flex/flex-props.ts
const FLEX_STYLE_PROPS_DATA = {
gap: {
type: "spacing",
property: "gap"
},
rowGap: {
type: "spacing",
property: "rowGap"
},
columnGap: {
type: "spacing",
property: "columnGap"
},
align: {
type: "identity",
property: "alignItems"
},
justify: {
type: "identity",
property: "justifyContent"
},
wrap: {
type: "identity",
property: "flexWrap"
},
direction: {
type: "identity",
property: "flexDirection"
}
};
//#endregion
exports.FLEX_STYLE_PROPS_DATA = FLEX_STYLE_PROPS_DATA;
//# sourceMappingURL=flex-props.cjs.map