Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
@rainbow-me/rainbowkit / dist / components / Dialog / DialogContent.d.ts
Size: Mime:
import { ReactNode } from 'react';
import { BoxProps } from '../Box/Box';
interface DialogContentProps {
    children: ReactNode;
    bottomSheetOnMobile?: boolean;
    padding?: BoxProps['padding'];
    marginTop?: BoxProps['marginTop'];
    wide?: boolean;
}
export declare function DialogContent({ bottomSheetOnMobile, children, marginTop, padding, wide, }: DialogContentProps): JSX.Element;
export {};