kitten-components
Version:
Front-end components library
16 lines (14 loc) • 326 B
JavaScript
import React from 'react'
export const InstrumentTagIcon = props => (
<svg
version="1.1"
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 9 11"
fill="#333"
{...props}
>
<title>Instrument tag</title>
<polygon points="9,11 0,11 0,0 5,0 5,4 9,4" />
<polygon points="9,3 6,3 6,0" />
</svg>
)