UNPKG

@ricons/tabler

Version:

React SVG icon components integrated from [`tabler`](https://github.com/tabler/tabler-icons)

5 lines (4 loc) 869 B
import * as React from 'react' export default React.forwardRef(function BrandCodesandbox(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 24 24' }, props, { ref: ref }), React.createElement('g', { fill: 'none', stroke: 'currentColor', 'stroke-width': '2', 'stroke-linecap': 'round', 'stroke-linejoin': 'round' }, React.createElement('path', { d: 'M20 7.5v9l-4 2.25L12 21l-4-2.25l-4-2.25v-9l4-2.25L12 3l4 2.25z' }), React.createElement('path', { d: 'M12 12l4-2.25l4-2.25' }), React.createElement('path', { d: 'M12 12v9' }), React.createElement('path', { d: 'M12 12L8 9.75L4 7.5' }), React.createElement('path', { d: 'M20 12l-4 2v4.75' }), React.createElement('path', { d: 'M4 12l4 2v4.75' }), React.createElement('path', { d: 'M8 5.25l4 2.25l4-2.25' }))) })