bananas-commerce-admin
Version:
What's this, an admin for apes?
14 lines (13 loc) • 386 B
TypeScript
import React from "react";
import { SxProps } from "@mui/material";
import { BoxProps } from "@mui/material/Box";
import { LogoType } from "../types";
import { LogoProps } from "./Logo";
export interface BrandProps {
src?: LogoType;
sx?: SxProps;
LogoProps?: LogoProps;
BoxProps?: Omit<BoxProps, "sx">;
}
declare const Brand: React.FC<BrandProps>;
export default Brand;