feat(api): add Service API component with related UI elements

This commit is contained in:
twwu
2025-09-15 10:27:19 +08:00
parent c51cedff7e
commit 4620bef25c
20 changed files with 401 additions and 8836 deletions

View File

@ -46,14 +46,14 @@ export default function Indicator({
className = '',
}: IndicatorProps) {
return (
<div className={classNames(
'h-2 w-2 rounded-[3px] border border-solid',
BACKGROUND_MAP[color],
BORDER_MAP[color],
SHADOW_MAP[color],
className,
)}>
</div>
<div
className={classNames(
'h-2 w-2 rounded-[3px] border border-solid',
BACKGROUND_MAP[color],
BORDER_MAP[color],
SHADOW_MAP[color],
className,
)}
/>
)
}