openreplay/frontend/app/components/ui/Icons/circle_fill.tsx
2025-03-11 10:35:08 +01:00

18 lines
460 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 Circle_fill(props: Props) {
const { size = 14, width = size, height = size, fill = '' } = props;
return (
<svg viewBox="0 0 16 16" width={ `${ width }px` } height={ `${ height }px` } ><circle cx="8" cy="8" r="8"/></svg>
);
}
export default Circle_fill;