31 lines
906 B
TypeScript
31 lines
906 B
TypeScript
import { FC } from 'react';
|
|
|
|
interface IconChromeProps {
|
|
className?: string;
|
|
}
|
|
|
|
const IconChrome: FC<IconChromeProps> = ({ className }) => {
|
|
return (
|
|
<svg
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
width="24px"
|
|
height="24px"
|
|
viewBox="0 0 24 24"
|
|
fill="none"
|
|
stroke="currentColor"
|
|
strokeWidth="1.5"
|
|
strokeLinecap="round"
|
|
strokeLinejoin="round"
|
|
className={className}
|
|
>
|
|
<circle cx="12" cy="12" r="10"></circle>
|
|
<circle opacity="0.5" cx="12" cy="12" r="4"></circle>
|
|
<line opacity="0.5" x1="21.17" y1="8" x2="12" y2="8"></line>
|
|
<line opacity="0.5" x1="3.95" y1="6.06" x2="8.54" y2="14"></line>
|
|
<line opacity="0.5" x1="10.88" y1="21.94" x2="15.46" y2="14"></line>
|
|
</svg>
|
|
);
|
|
};
|
|
|
|
export default IconChrome;
|