@vtex/phosphor-icons
Version:
<p align="center"> <img alt="VTEX Logo" src="./docs/assets/vtex-logo.svg" height="100" width="117" /> <h3 align="center">VTEX Phosphor Icons</h3> <p align="center">Reach us on #admin-ui channel on Slack | Tag us with @dev-team-admin on Slack</p> </p
12 lines (11 loc) • 586 B
TypeScript
import type { SVGAttributes } from 'react';
import React from 'react';
import type { RenderFunction } from './renderFunction';
import type { IconOptions } from './Icon';
export declare type IconBaseProps = IconBaseOptions & SVGAttributes<SVGSVGElement>;
export declare const IconBase: React.ForwardRefExoticComponent<IconBaseOptions & SVGAttributes<SVGSVGElement> & React.RefAttributes<SVGSVGElement>>;
export interface IconBaseOptions extends IconOptions {
renderPath: RenderFunction;
height?: string | number | undefined;
width?: string | number | undefined;
}