aboutsummaryrefslogtreecommitdiff
path: root/icons-react/icons-js/checkbox.js
blob: 3e77e15b11c3ea475c0b7ee71f0cf9813042f8e3 (plain)
1
2
3
4
5
import * as React from "react";

const IconCheckbox = (size = 24, color = "currentColor", stroke = 2, ...props) => <svg className="icon icon-tabler icon-tabler-checkbox" width={size} height={size} viewBox="0 0 24 24" strokeWidth={stroke} stroke={color} fill="none" strokeLinecap="round" strokeLinejoin="round" {...props}><polyline points="9 11 12 14 20 6" /><path d="M20 12v6a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h9" /></svg>;

export default IconCheckbox;