@central-icons-react/square-outlined-radius-0-stroke-2
Version:
A collection of square outlined React icons with 0px radius and 2px stroke width, designed for use in React applications.
14 lines (13 loc) • 334 B
TypeScript
import React from "react";
import type { SVGProps } from "react";
export type CentralIconBaseProps = {
size?: string | number;
ariaHidden?: boolean;
mode?: "masked" | "raw";
maskId?: string;
} & SVGProps<SVGSVGElement>;
export declare const CentralIconBase: React.FC<
CentralIconBaseProps & {
ariaLabel?: string;
}
>;