15 lines
265 B
TypeScript
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 |