@atlaskit/icon
Version:
An icon is a symbol representing a command, device, directory, or common action.
18 lines (17 loc) • 707 B
TypeScript
/**
* @jsxRuntime classic
* @jsx jsx
*/
import { type NamedExoticComponent } from 'react';
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)
*/
declare const SVG: NamedExoticComponent<SVGProps>;
export default SVG;