UNPKG

@conduction/components

Version:

React (Gatsby) components used within the Conduction Skeleton Application (and its implementations)

6 lines (5 loc) 330 B
import { jsx as _jsx } from "react/jsx-runtime"; import * as styles from "./QuoteWrapper.module.css"; export const QuoteWrapper = ({ children, borderColor, borderWidth, }) => { return (_jsx("div", { style: { borderLeftColor: borderColor, borderLeftWidth: borderWidth }, className: styles.container, children: children })); };