UNPKG

@onesy/ui-react

Version:
34 lines (33 loc) 988 B
import React from 'react'; import { TPaletteVersion } from '@onesy/style-react'; import { ISection } from '../Section/Section'; import { IMediaObject, IPropsAny } from '../types'; export declare type ISectionCardsItem = { name?: any; description?: any; buttonText?: any; to?: string; link?: string; backgroundColor?: TPaletteVersion; backgroundGradient?: TPaletteVersion[]; backgroundImage?: IMediaObject; backgroundVideo?: IMediaObject; overlay?: TPaletteVersion; overlayBlur?: number | boolean; themed?: boolean; propsMain?: any; propsImage?: any; propsName?: any; propsDescription?: any; propsButton?: any; propsWrapperText?: any; propsActions?: any; }; export declare type ISectionCards = ISection & { size?: 'small' | 'regular' | 'large'; values?: ISectionCardsItem[]; ItemProps?: IPropsAny; ItemsProps?: IPropsAny; }; declare const Element: React.FC<ISectionCards>; export default Element;