rtgk-screen-web/pages/components/Header/StateCheck.js

10 lines
248 B
JavaScript
Raw Permalink Normal View History

2024-06-20 11:26:44 +08:00
function StateCheck ({ Icon, Title }) {
return (
<div className="group flex flex-raw cursor-pointer ">
{Icon && <Icon className="h-4 mt-1 mr-1 group-hover:animate-bounce" />}
{Title}
</div>
);
};
export default StateCheck