Copy code import type { SVGProps } from "react";
export type IconProps = {
size?: number | string;
color?: string;
className?: string;
} & SVGProps<SVGSVGElement>;
export const CricketBall = ({
size = 24,
color = "currentColor",
className,
...props
}: IconProps) => (
<svg
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 24 24"
width={size}
height={size}
fill={color}
className={className}
{...props}
>
<path d="M12 2C6.49 2 2 6.49 2 12s4.49 10 10 10 10-4.49 10-10S17.51 2 12 2m0 2c.98 0 1.91.19 2.78.51l-.52.52.71.71.79-.79c.4.21.78.47 1.13.74L5.68 16.9c-.28-.36-.53-.73-.74-1.13l.79-.79-.71-.71-.52.52a8 8 0 0 1-.51-2.78c0-4.41 3.59-8 8-8Zm0 16c-.98 0-1.91-.19-2.78-.51l.52-.52-.71-.71-.79.79c-.4-.21-.78-.47-1.13-.74L18.32 7.1c.28.36.53.73.74 1.13l-.79.79.71.71.52-.52c.32.87.51 1.8.51 2.78 0 4.41-3.59 8-8 8Z" />
<path d="m10.06 17.24.35.35.35.35.86-.85.85-.86-.35-.35-.35-.35-.86.85zM12.79 14.5l.36.35.35.36.85-.86.86-.85-.36-.35-.35-.36-.85.86zM15.53 11.77l.35.35.35.35.86-.85.85-.86-.35-.35-.35-.35-.86.85zM13.94 6.76l-.35-.35-.35-.35-.86.85-.85.86.35.35.35.35.86-.85zM11.21 9.5l-.36-.35-.35-.36-.85.86-.86.85.36.35.35.36.85-.86zM8.47 12.23l-.35-.35-.35-.35-.86.85-.85.86.35.35.35.35.86-.85z" />
</svg>
);Default · 24px · currentColor
UI examples Size, inline, toolbar, and dark UI — works for any icon style.
Cricket Ball Icon — Free SVG Component The Cricket Ball icon is a free, open-source SVG icon component built with TypeScript for React, Next.js, Vue, Remix, Svelte, and Astro projects. No npm install or package dependency required — just copy the component code and paste it into your project.
How to use Cricket Ball icon in React Import the Cricket Ball component from your icons folder. Use it as a standard React component with props: size (number), color (string), className (string), and all standard SVG attributes via spread props.
Example: <Cricket Ball size={24} color=“currentColor“ className=“shrink-0“ />
Features Zero dependencies — no package install needed TypeScript ready with full type safety Fully customizable size, color, and className Works with Tailwind CSS, styled-components, CSS modules Accessible — supports aria attributes Tree-shakeable — only import what you use MIT licensed — free for commercial use Compatible frameworks React, Next.js (App Router & Pages Router), Vue, Remix, Svelte, Astro, Nuxt, Gatsby, Vite, Angular, Qwik.
Category: sports Browse more sports icons in the Next Icons library. All icons are hand-crafted SVGs optimized for web performance.