filter search + primary color + logo + ...

This commit is contained in:
hamid zarghami
2025-10-19 16:04:28 +03:30
parent ef0deaf3bd
commit ab2d5ea9a5
54 changed files with 1282 additions and 211 deletions
+1 -1
View File
@@ -11,7 +11,7 @@ const Radio: FC<Props> = (props: Props) => {
<div onClick={() => props.onChange(props.value)} className='size-4 cursor-pointer rounded-full bg-[#EAEDF5] flex justify-center items-center'>
{
props.isActive &&
<div className='size-2 bg-black rounded-full'></div>
<div className='size-2 bg-primary rounded-full'></div>
}
</div>
)