Files
negareh-admin/src/components/StatusCircle.tsx
T
2025-10-20 12:28:48 +03:30

15 lines
270 B
TypeScript

import { type FC } from 'react'
type Props = {
color: string
}
const StatusCircle: FC<Props> = (props: Props) => {
return (
<div style={{ background: props.color }} className='size-1.5 rounded-full'>
</div>
)
}
export default StatusCircle