ld-audio
Version:
Last Draft audio plugin
19 lines (16 loc) • 404 B
JavaScript
/*
* Copyright (c) 2016, vace.nz (https://github.com/vacenz)
*
* License: MIT
*/
import React, {Component} from 'react'
export default class extends Component {
render () {
return (
<svg fill="currentColor" className='ld-button-audio' height="24" width="24" viewBox="0 0 24 24">
<path d="M8 5v14l11-7z" />
<path d="M0 0h24v24H0z" fill="none" />
</svg>
)
}
}