@onesy/ui-react
Version:
UI for React
15 lines (14 loc) • 443 B
TypeScript
import React from 'react';
import { ISection } from '../Section/Section';
import { IMediaObject, IPropsAny } from '../types';
export declare type ISectionLogos = 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;