UNPKG

@wulperstudio/cms

Version:
15 lines (14 loc) 361 B
import React from 'react'; import { BoxProps, StackProps } from '@mui/material'; interface ImageModel { src: string; alt: string; } interface ListLogosModel { blockProps?: StackProps; containerProps?: BoxProps; logos: Array<ImageModel>; variant?: 'block' | 'swipe'; } export declare const ListLogos: React.FC<ListLogosModel>; export {};