feat(client): vendor digital employee source

This commit is contained in:
baiyanyun
2026-06-05 15:02:42 +08:00
parent c6fdff20e8
commit 2eb9a99da3
66 changed files with 15160 additions and 2646 deletions

View File

@@ -0,0 +1,7 @@
interface GemProps {
className?: string;
}
export default function Gem({ className = '' }: GemProps) {
return <div className={`de-gem ${className}`} aria-hidden="true" />;
}