@mojito-inc/secondary-market
Version:
Mojito secondary market is the platform to purchase NFT.
14 lines (13 loc) • 516 B
TypeScript
import { SxProps, Theme } from '@mui/material/styles';
export interface BannerProps {
title?: string;
subtitle?: string;
mediaURL?: string;
buttonName?: string;
titleStyle?: SxProps<Theme>;
subtitleStyle?: SxProps<Theme>;
buttonStyle?: SxProps<Theme>;
onClickButton?: () => void;
}
declare const Banner: ({ title, subtitle, buttonName, mediaURL, titleStyle, subtitleStyle, buttonStyle, onClickButton, }: BannerProps) => import("react/jsx-runtime").JSX.Element;
export default Banner;