UNPKG

@amaui/ui-react

Version:
15 lines (14 loc) 443 B
import React from 'react'; import { ISection } from '../Section/Section'; import { IMediaObject, IPropsAny } from '../types'; export interface ISectionLogos extends ISection { values?: IMediaObject[]; version?: 'regular'; size?: 'small' | 'regular' | 'large'; gray?: boolean; name?: boolean; ItemProps?: IPropsAny; WrapperProps?: IPropsAny; } declare const Element: React.FC<ISectionLogos>; export default Element;