UNPKG

@central-icons-react/round-outlined-radius-3-stroke-2

Version:

A collection of round outlined React icons with 3px radius and 2px stroke width, designed for use in React applications.

12 lines (11 loc) 288 B
import React from "react"; import type { SVGProps } from "react"; export type CentralIconBaseProps = { size?: string | number; ariaHidden?: boolean; } & SVGProps<SVGSVGElement>; export declare const CentralIconBase: React.FC< CentralIconBaseProps & { ariaLabel?: string; } >;