22 lines
824 B
TypeScript
22 lines
824 B
TypeScript
import { BaseIcon } from './BaseIcon';
|
|
|
|
interface ClockIconProps {
|
|
size?: number;
|
|
className?: string;
|
|
disabled?: boolean;
|
|
}
|
|
|
|
export function ClockIcon({ size = 24, className = '', disabled = false }: ClockIconProps) {
|
|
return (
|
|
<BaseIcon size={size} className={className} disabled={disabled}>
|
|
<path d="M22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12Z" />
|
|
<path
|
|
fillRule="evenodd"
|
|
clipRule="evenodd"
|
|
d="M12 7.25C12.4142 7.25 12.75 7.58579 12.75 8V11.6893L15.0303 13.9697C15.3232 14.2626 15.3232 14.7374 15.0303 15.0303C14.7374 15.3232 14.2626 15.3232 13.9697 15.0303L11.4697 12.5303C11.329 12.3897 11.25 12.1989 11.25 12V8C11.25 7.58579 11.5858 7.25 12 7.25Z"
|
|
fill="white"
|
|
/>
|
|
</BaseIcon>
|
|
);
|
|
}
|