UNPKG

@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

10 lines (9 loc) 425 B
import React from 'react'; import type { RenderFunction } from './renderFunction'; import type { IconOptions } from './Icon'; export declare const IconBase: React.ForwardRefExoticComponent<IconBaseOptions & React.RefAttributes<SVGSVGElement>>; export interface IconBaseOptions extends IconOptions { renderPath: RenderFunction; height?: string | number | undefined; width?: string | number | undefined; }