@intility/bifrost-react
Version:
React library for Intility's design system, Bifrost.
7 lines (6 loc) • 337 B
TypeScript
import type { PropsFor } from "../../types.js";
type WidthOverflowType = PropsFor<"div", {
contentProps?: Omit<React.JSX.IntrinsicElements["div"], "children">;
}>;
declare const WidthOverflow: import("react").ForwardRefExoticComponent<WidthOverflowType & import("react").RefAttributes<HTMLDivElement>>;
export default WidthOverflow;