feat: persist selected tag & note locally (#1851)

This commit is contained in:
Aman Harwara
2022-10-20 18:56:59 +05:30
committed by GitHub
parent 6c47f95748
commit 4432f1cb4c
20 changed files with 421 additions and 116 deletions

View File

@@ -0,0 +1,16 @@
type Props = {
checked: boolean
className?: string
}
const RadioIndicator = ({ checked, className }: Props) => (
<div
className={`relative h-4 w-4 rounded-full border-2 border-solid ${
checked
? 'border-info after:absolute after:top-1/2 after:left-1/2 after:h-2 after:w-2 after:-translate-x-1/2 after:-translate-y-1/2 after:rounded-full after:bg-info'
: 'border-passive-1'
} ${className}`}
></div>
)
export default RadioIndicator