6 lines
155 B
TypeScript
Executable File
6 lines
155 B
TypeScript
Executable File
import {createSvgIcon} from '../create-svg-icon';
|
|
|
|
export const ArrowRightIcon = createSvgIcon(
|
|
<path d="m10 17 5-5-5-5v10z" />
|
|
, 'ArrowRightOutlined');
|