tutorbookapp/tutorbook

View on GitHub
components/icons/light.tsx

Summary

Maintainability
A
0 mins
Test Coverage
export default function Light(): JSX.Element {
  return (
    <svg
      viewBox='0 0 24 24'
      width='16'
      height='16'
      stroke='currentColor'
      strokeWidth='1.5'
      strokeLinecap='round'
      strokeLinejoin='round'
      fill='none'
      shapeRendering='geometricPrecision'
      style={{ color: 'currentColor' }}
    >
      <circle cx='12' cy='12' r='5' />
      <path d='M12 1v2' />
      <path d='M12 21v2' />
      <path d='M4.22 4.22l1.42 1.42' />
      <path d='M18.36 18.36l1.42 1.42' />
      <path d='M1 12h2' />
      <path d='M21 12h2' />
      <path d='M4.22 19.78l1.42-1.42' />
      <path d='M18.36 5.64l1.42-1.42' />
    </svg>
  );
}