@intility/bifrost-react
Version:
React library for Intility's design system, Bifrost.
16 lines (15 loc) • 476 B
JavaScript
import { jsx as _jsx } from "react/jsx-runtime";
import { forwardRef } from "react";
import Box from "../Box/Box.js";
const SectionContent = /*#__PURE__*/ forwardRef(({ children, ...props }, ref)=>{
return /*#__PURE__*/ _jsx(Box, {
padding: 16,
radiusBottomRight: true,
radiusBottomLeft: true,
...props,
ref: ref,
children: children
});
});
SectionContent.displayName = "Section.Content";
export default SectionContent;