@intility/bifrost-react
Version:
React library for Intility's design system, Bifrost.
13 lines (12 loc) • 506 B
TypeScript
import { type BifrostLocale } from "../../locales/en-us.js";
export type BifrostProps = {
/** Your entire app (or at least the parts using bifrost components) */
children?: React.ReactNode;
/** Set current locale for all descendant Bifrost components */
locale?: BifrostLocale;
};
/**
* Configure Bifrost globally by wrapping this component around your app
*/
declare const Bifrost: ({ children, locale }: BifrostProps) => import("react/jsx-runtime").JSX.Element;
export default Bifrost;