UNPKG

@cross-nft-marketplace/auction-house-nft-components

Version:
10 lines (9 loc) 434 B
/// <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;