UNPKG

@0xsequence/connect

Version:
7 lines 445 B
import { jsx as _jsx } from "react/jsx-runtime"; import { cn, Text } from '@0xsequence/design-system'; export const PageHeading = (props) => { const { children, className, ...rest } = props; return (_jsx(Text, { className: cn('text-center mt-10 mb-6', className), variant: "normal", fontWeight: "bold", color: "primary", asChild: true, children: _jsx("h1", { ...rest, children: children }) })); }; //# sourceMappingURL=PageHeading.js.map