monday-ui-react-core
Version:
Official monday.com UI resources for application development in React.js
31 lines (28 loc) • 754 B
JSX
import React from "react";
import { TokenTable } from "vibe-storybook-components";
export const EasingTokenTable = () => {
const theadData = ["Token", "Usage", "Cubic bezier"];
const tbodyData = [
{
id: "1",
items: ["--motion-timing-enter", "Entrence", "(0,0,0.35,1)", null]
},
{
id: "2",
items: ["--motion-timing-exit", "Exit", "(0.4,0,1,1)", null]
},
{
id: "3",
items: ["--motion-timing-transition", "Transition", "(0.4,0,0.2,1)", null]
},
{
id: "4",
items: ["--motion-timing-emphesize", "Emphasized easing draws extra attention", "(0,0,0.2,1.4)", null]
}
];
return (
<div>
<TokenTable theadData={theadData} tbodyData={tbodyData} />
</div>
);
};