UNPKG

@workday/canvas-kit-docs

Version:

Documentation components of Canvas Kit components

17 lines (16 loc) 652 B
import * as React from 'react'; import { Box } from '@workday/canvas-kit-react/layout'; const baseStyles = { color: 'blackPepper500', display: 'inline-block', margin: 'xxs', minHeight: 'xl', minWidth: '8rem', padding: 'xs', }; export const Background = () => { return (React.createElement(React.Fragment, null, React.createElement(Box, { backgroundColor: "cinnamon300", ...baseStyles }, "Cinnamon 300"), React.createElement(Box, { backgroundColor: "sourLemon300", ...baseStyles }, "Sour Lemon 300"), React.createElement(Box, { backgroundColor: "blueberry300", ...baseStyles }, "Blueberry 300"))); };