Files
dmail-front/src/components/StatusCircle.tsx
T
2025-07-20 10:12:31 +03:30

15 lines
265 B
TypeScript

import { 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