@atlaskit/icon
Version:
An icon is a symbol representing a command, device, directory, or common action.
14 lines (13 loc) • 718 B
TypeScript
import type { SVGProps } from '../types';
/**
* __SVG__
*
* @deprecated Custom SVG is deprecated and will be removed from `atlaskit/icon` in an upcoming major release. Please use either an existing icon from @atlaskit/icon or @atlaskit/icon-lab, or contributing to @atlaskit/icon-lab directly. For third party logos, use an SVG element along with a label.
*
* An icon is used as a visual representation of common actions and commands to provide context.
*
* - [Examples](https://atlaskit.atlassian.com/packages/design-system/icon)
* - [Code](https://atlaskit.atlassian.com/packages/design-system/icon/docs/custom-svgs)
*/
declare const SVG: import("react").NamedExoticComponent<SVGProps>;
export default SVG;