@pinuts/bsr-uikit-relaunch
Version:
BSR UI-KIT Relaunch
39 lines (35 loc) • 984 B
JSX
import * as React from 'react';
import PropTypes from 'prop-types';
import Icon40PropValues from '../_defaultIconPropValues.ts';
const Play = (props) => {
const {
width = Icon40PropValues.width,
height = Icon40PropValues.height,
stroke = Icon40PropValues.stroke,
...restProps
} = props;
delete restProps.fill;
return (
<svg
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 24 24"
width={width}
height={height}
{...restProps}
fill="none"
>
<path
stroke={stroke}
strokeWidth={2}
d="M19.568 11.095 6.924 5.168a1 1 0 0 0-1.424.905v11.854a1 1 0 0 0 1.424.905l12.644-5.927a1 1 0 0 0 0-1.81Z"
/>
</svg>
);
};
Play.propTypes = {
width: PropTypes.string,
height: PropTypes.string,
fill: PropTypes.string,
stroke: PropTypes.string,
};
export default Play;