@yamada-ui/react
Version:
React UI components of the Yamada, by the Yamada, for the Yamada built with React and Emotion
14 lines (12 loc) • 468 B
JavaScript
const require_config = require('../../core/system/config.cjs');
//#region src/theme/tokens/easings.ts
const easings = require_config.defineTokens.easings({
ease: "cubic-bezier(0.25, 0, 0.25, 1)",
"ease-in": "cubic-bezier(0.42, 0, 1, 1)",
"ease-in-out": "cubic-bezier(0.42, 0, 0.58, 1)",
"ease-in-smooth": "cubic-bezier(0.32, 0.72, 0, 1)",
"ease-out": "cubic-bezier(0, 0, 0.58, 1)"
});
//#endregion
exports.easings = easings;
//# sourceMappingURL=easings.cjs.map