testokur/testokur-ui

View on GitHub
src/components/Icons/Time.tsx

Summary

Maintainability
B
6 hrs
Test Coverage
import React from 'react';
import Props from './Props';
import Component from './component';

const Time = (props: Omit<Props, 'children'>): JSX.Element => {
  const { size, color, ariaHidden, ariaLabel, customColor } = props;

  return (
    <Component size={size} color={color} viewBox="0 0 24 24" ariaHidden={ariaHidden} ariaLabel={ariaLabel} customColor={customColor}>
      <path fill="none" d="M0 0h24v24H0z" />
      <path
        d="M12 22C6.477 22 2 17.523 2 12S6.477 2 12 2s10 4.477 10 10-4.477 10-10 10zm0-2a8 8 0 1 0 0-16 8 8 0 0 0 0
      16zm1-8h4v2h-6V7h2v5z"
      />
    </Component>
  );
};

export default Time;