UNPKG

design-system-simplefi

Version:

Design System for SimpleFi Applications

17 lines 909 B
import React from 'react'; import Card from './Card'; export default { title: 'components/Card', component: Card, }; export var DefaultCard = function () { return (React.createElement(Card, { alignItems: "center", borderRadius: "md", flexDirection: "column", justifyContent: "space-evenly" }, React.createElement("p", null, " hello "), React.createElement("p", null, " hello "), React.createElement("p", null, " hello "), React.createElement("p", null, " hello "))); }; export var RowCard = function () { return (React.createElement(Card, { alignItems: "center", borderRadius: "md", flexDirection: "row", height: 100, justifyContent: "space-evenly" }, React.createElement("p", null, " hello "), React.createElement("p", null, " hello "), React.createElement("p", null, " hello "), React.createElement("p", null, " hello "))); }; //# sourceMappingURL=Card.stories.js.map