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

23 lines
657 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 Tablet_android(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="M1 4a1 1 0 0 1 1-1h12a1 1 0 0 1 1 1v8a1 1 0 0 1-1 1H2a1 1 0 0 1-1-1V4zm-1 8a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2H2a2 2 0 0 0-2 2v8z" />
<path d="M14 8a1 1 0 1 0-2 0 1 1 0 0 0 2 0z" />
</svg>
);
}
export default Tablet_android;