UNPKG

@wulperstudio/cms

Version:
16 lines (15 loc) 481 B
import React from 'react'; import { ContainerProps, StackProps } from '@mui/material'; interface TagModel { title: React.ReactNode; color?: string; backgroundColor?: string; } interface TagTitleDescriptionModel extends Omit<ContainerProps, 'title' | 'description'> { description: React.ReactNode; tag?: TagModel; title: React.ReactNode; stackProps?: StackProps; } export declare const TagTitleDescription: React.FC<TagTitleDescriptionModel>; export {};