UNPKG

@wulperstudio/cms

Version:
19 lines (18 loc) 631 B
import React from 'react'; import { IconProps } from '@iconify/react'; import { StackProps, TypographyProps } from '@mui/material'; import { GridCardsPropsModel } from '../../GridCards'; export interface ListIconDescriptionModel { label: string; value: string; icon?: string; } export interface IconDescriptionModel { descriptionProps?: TypographyProps; gridCardsProps?: GridCardsPropsModel; iconProps?: Omit<IconProps, 'icon'>; list: Array<ListIconDescriptionModel>; stackProps?: StackProps; titleProps?: TypographyProps; } export declare const IconDescription: React.FC<IconDescriptionModel>;