@wulperstudio/cms
Version:
Wulper Studio Library Components CMS
15 lines (14 loc) • 361 B
TypeScript
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 {};