UNPKG

@intility/bifrost-react

Version:

React library for Intility's design system, Bifrost.

10 lines (9 loc) 438 B
import type { PropsFor } from "../../types.js"; export type SectionHeaderProps = PropsFor<"div", { /** Adds an arrow with hover effect when wrapped in a link */ arrow?: boolean; /** Remove the default Section.Header padding */ noPadding?: boolean; }>; declare const SectionHeader: import("react").ForwardRefExoticComponent<SectionHeaderProps & import("react").RefAttributes<HTMLDivElement>>; export default SectionHeader;