header-sider-layout
Version:
ant-design-pro layout, based on pro-layout, with header and sider layout.
24 lines (23 loc) • 533 B
TypeScript
import './ThemeColor.less';
import React from 'react';
export interface TagProps {
color: string;
check: boolean;
className?: string;
onClick?: () => void;
}
export interface ThemeColorProps {
colors?: {
key: string;
color: string;
}[];
title?: string;
value: string;
onChange: (color: string) => void;
formatMessage: (data: {
id: any;
defaultMessage?: string;
}) => string;
}
declare const ThemeColor: React.FC<ThemeColorProps>;
export default ThemeColor;