@ricons/ionicons5
Version:
React SVG icon components integrated from [`ionicons5`](https://ionicons.com/)
5 lines (4 loc) • 615 B
JavaScript
import * as React from 'react'
export default React.forwardRef(function Checkbox(props, ref) {
return React.createElement('svg', Object.assign({ xmlns: 'http://www.w3.org/2000/svg', xmlnsXlink: 'http://www.w3.org/1999/xlink', viewBox: '0 0 512 512' }, props, { ref: ref }), React.createElement('path', { d: 'M400 48H112a64.07 64.07 0 0 0-64 64v288a64.07 64.07 0 0 0 64 64h288a64.07 64.07 0 0 0 64-64V112a64.07 64.07 0 0 0-64-64zm-35.75 138.29l-134.4 160a16 16 0 0 1-12 5.71h-.27a16 16 0 0 1-11.89-5.3l-57.6-64a16 16 0 1 1 23.78-21.4l45.29 50.32l122.59-145.91a16 16 0 0 1 24.5 20.58z', fill: 'currentColor' }))
})