openreplay/frontend/app/components/ui/Icons/pause.tsx
Андрей Бабушкин b822b1c067 applied eslint
2025-02-26 20:31:01 +01:00

20 lines
548 B
TypeScript

/* Auto-generated, do not edit */
import React from 'react';
interface Props {
size?: number | string;
width?: number | string;
height?: number | string;
fill?: string;
}
function Pause(props: Props) {
const {
size = 14, width = size, height = size, fill = '',
} = props;
return (
<svg viewBox="0 0 16 16" width={`${width}px`} height={`${height}px`}><path d="M6 3.5a.5.5 0 0 1 .5.5v8a.5.5 0 0 1-1 0V4a.5.5 0 0 1 .5-.5zm4 0a.5.5 0 0 1 .5.5v8a.5.5 0 0 1-1 0V4a.5.5 0 0 1 .5-.5z" /></svg>
);
}
export default Pause;