import * as React from "react"; import { cx } from "@emotion/css"; import Box, { BoxProps } from "./Box"; import { BoxSides } from "../../../shared/styles/styleUtils/modifiers/modifierUtils"; import { BorderRadii, BorderVariant, border, borderRadius } from "../../../shared/styles/styleUtils/modifiers/border"; export interface BorderedBoxProps extends BoxProps { /** * Which side (or sides) the border should be on */ side: BoxSides; /** * Sets a `border-radius` */ radius?: BorderRadii; /** * Which style of border to use */ variant?: BorderVariant; } const BorderedBox = (props: BorderedBoxProps) => { const { side, radius = "none", variant, className, "data-cy": dataCy = "borderedBox", ...other } = props; return ( ); }; export default BorderedBox;