@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) • 441 B
JavaScript
import { defineTokens } from "../../core/system/config.js";
//#region src/theme/tokens/easings.ts
const easings = 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
export { easings };
//# sourceMappingURL=easings.js.map