@wulperstudio/cms
Version:
Wulper Studio Library Components CMS
16 lines (15 loc) • 481 B
TypeScript
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 {};