@aliretail/react-materials-components
Version:
16 lines (15 loc) • 403 B
TypeScript
import { Component } from 'react';
export interface SectionProps {
className?: string;
containerClassName?: string;
title?: string;
tags?: Array<{
text: string;
color?: string;
type: 'warning' | 'middle' | 'success' | 'cancel' | 'error';
}>;
subTitle?: string;
}
export declare class Section extends Component<SectionProps> {
render(): JSX.Element;
}