|
import Svg, { Circle } from 'react-native-svg'
|
|
|
|
export const UncheckedIcon = ({ className }: { className?: string }) => (
|
|
<Svg width="12" height="12" viewBox="0 0 12 12" fill="none">
|
|
<Circle cx="6" cy="6" r="5.5" stroke="#8A8A8A" strokeWidth="1" />
|
|
</Svg>
|
|
);
|