import { Tag } from 'antd'; import React, { FC } from 'react'; interface TagProps { color?: string; text: string; } const CustomTag: FC = ({ color, text }) => { const colorValue = color; return {text}; }; export default CustomTag;