stream/src/components/Svg/Play.js

22 lines
634 B
JavaScript
Raw Normal View History

import { h } from 'preact'
import { number, string } from 'prop-types'
import { Svg } from './base'
const Play = ({ size = '24', colour = 'inherit', ...rest }) => (
<Svg viewBox="0 0 24 24" height={size} width={size} {...rest}>
<path
2021-05-16 23:08:25 +00:00
strokeWidth="1.5"
stroke={colour}
fill="transparent"
d="M2.12436,1.73205 C2.12436,0.96225 2.95769,0.481125 3.62436,0.866025 L21.6244,11.2583 C22.291,11.6432 22.291,12.6055 21.6244,12.9904 L3.62436,23.3827 C2.95769,23.7676 2.12436,23.2865 2.12436,22.5167 L2.12436,1.73205 Z"
/>
</Svg>
)
Play.propTypes = {
size: number,
colour: string,
}
export default Play