18 lines
495 B
TypeScript
18 lines
495 B
TypeScript
import React from 'react';
|
|
import { CustomSVGProps } from '../type';
|
|
import '../index.less';
|
|
|
|
const Play = (props: CustomSVGProps) => (
|
|
<span className={'icon'}>
|
|
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
|
|
<path
|
|
fill="currentColor"
|
|
fillRule="nonzero"
|
|
d="M3 4.136v7.728a2.1 2.1 0 0 0 3.15 1.819l6.697-3.864a2.1 2.1 0 0 0 0-3.638L6.15 2.317A2.1 2.1 0 0 0 3 4.136Z"
|
|
/>
|
|
</svg>
|
|
</span>
|
|
);
|
|
|
|
export default Play;
|