@cross-nft-marketplace/auction-house-nft-components
Version:
NFT Media Rendering Components
10 lines (9 loc) • 434 B
TypeScript
/// <reference types="react" />
import type { StyleProps } from "../utils/StyleTypes";
import type { Strings } from "../constants/strings";
export declare type InfoContainerProps = {
children: React.ReactNode;
titleString: keyof typeof Strings;
bottomPadding?: boolean;
} & StyleProps;
export declare const InfoContainer: ({ children, titleString, bottomPadding, className, }: InfoContainerProps) => JSX.Element;