default 1 column + header + ...

This commit is contained in:
hamid zarghami
2025-07-30 15:00:54 +03:30
parent b76be3815d
commit 25e00442d4
21 changed files with 835 additions and 164 deletions
+15
View File
@@ -0,0 +1,15 @@
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