@ricons/ionicons5
Version:
React SVG icon components integrated from [`ionicons5`](https://ionicons.com/)
7 lines (6 loc) • 900 B
JavaScript
'use strict'
Object.defineProperty(exports, '__esModule', { value: true })
const React = require('react')
exports.default = React.forwardRef(function WatchOutline(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('rect', { x: '112', y: '112', width: '288', height: '288', rx: '64', ry: '64', fill: 'none', stroke: 'currentColor', 'stroke-linejoin': 'round', 'stroke-width': '32' }), React.createElement('path', { d: 'M176 112V40a8 8 0 0 1 8-8h144a8 8 0 0 1 8 8v72', fill: 'none', stroke: 'currentColor', 'stroke-linejoin': 'round', 'stroke-width': '32' }), React.createElement('path', { d: 'M336 400v72a8 8 0 0 1-8 8H184a8 8 0 0 1-8-8v-72', fill: 'none', stroke: 'currentColor', 'stroke-linejoin': 'round', 'stroke-width': '32' }))
})