Type Alias TextPlaneProps
TextPlaneProps: Omit<ThreeElements["mesh"], "ref"> & {
    backgroundColor: string;
    children: ReactNode;
    color: string;
    font?: string;
    fontSize?: number;
    options: Omit<
        ITextSVGOptions,
        "font"
        | "fontSize"
        | "textColor"
        | "bgFillColor"
        | "text",
    >;
}