8 lines
267 B
TypeScript
8 lines
267 B
TypeScript
export default function CheckboxOff() {
|
|
return (
|
|
<svg width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
<rect x="0.5" y="0.5" width="17" height="17" rx="3.5" stroke="#B9B9B9" />
|
|
</svg>
|
|
);
|
|
}
|