/** * 站点标签组件 * @邠心vbe on 2023/11/30 */ import React from 'react'; import TextView from './TextView'; const SiteLabelView = ({ label, color = textLight, background = colorPrimary }) => { if (label) { return ( {label} ) } else { return <> } }; export default SiteLabelView;