mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-16 18:09:22 +08:00
18 lines
317 B
TypeScript
18 lines
317 B
TypeScript
|
import React from 'react';
|
||
|
|
||
|
const NpmIcon: React.FC = () => (
|
||
|
<svg
|
||
|
fill="#E53E3E"
|
||
|
focusable="false"
|
||
|
height="1em"
|
||
|
stroke="#E53E3E"
|
||
|
strokeWidth="0"
|
||
|
viewBox="0 0 16 16"
|
||
|
width="1em"
|
||
|
>
|
||
|
<path d="M0 0v16h16v-16h-16zM13 13h-2v-8h-3v8h-5v-10h10v10z" />
|
||
|
</svg>
|
||
|
);
|
||
|
|
||
|
export default NpmIcon;
|