@intility/bifrost-react
Version:
React library for Intility's design system, Bifrost.
11 lines (10 loc) • 516 B
TypeScript
import type { PropsFor } from "../../types.js";
export type InlineAlign = InlineProps["align"];
export type InlineProps = PropsFor<"div", {
/** Optional custom gap as number (in px) or CSS length string (12px default) */
gap?: number | string;
/** Vertical alignment: "bottom", "center", or "top" (default) */
align?: "top" | "center" | "bottom";
}>;
declare const Inline: import("react").ForwardRefExoticComponent<InlineProps & import("react").RefAttributes<HTMLDivElement>>;
export default Inline;