@brizy/ui
Version:
React elements in Brizy style
12 lines (11 loc) • 345 B
TypeScript
import React from "react";
import { Props as FrameProps } from "./types";
import { FCC } from "../types";
type FrameContentContext = {
node: HTMLElement | undefined;
};
export declare const FrameContentContext: React.Context<FrameContentContext>;
export declare const FrameContent: FCC<FrameProps & {
fullWidth?: boolean;
}>;
export {};