* Various improvements Icon updates in side menu and Spot List page * Drag Controls * Title changes * Title updates and removed comments from code. * Update SpotVideoContainer.tsx
19 lines
602 B
TypeScript
19 lines
602 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 Orspotoutline(props: Props) {
|
|
const { size = 14, width = size, height = size, fill = '' } = props;
|
|
return (
|
|
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" strokeWidth="2" strokeLinecap="round" strokeLinejoin="round" width={ `${ width }px` } height={ `${ height }px` } ><circle cx="12" cy="12" r="10"/><circle cx="12" cy="12" r="1"/></svg>
|
|
);
|
|
}
|
|
|
|
export default Orspotoutline;
|