nicecode-v2/packages/icon-v2/src/icons/Save.tsx
2024-07-22 09:51:31 +08:00

18 lines
693 B
TypeScript

import React from 'react';
import { CustomSVGProps } from '../type';
import '../index.less';
const Save = (props: CustomSVGProps) => (
<span className={'icon'}>
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<path
fill="currentColor"
fillRule="nonzero"
d="M13 1a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2H3a2 2 0 0 1-2-2V3a2 2 0 0 1 2-2h10ZM4 2H3a1 1 0 0 0-1 1v10a1 1 0 0 0 1 1h10a1 1 0 0 0 1-1V3a1 1 0 0 0-1-1h-1v2a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V2Zm6.5 9a.5.5 0 1 1 0 1h-5a.5.5 0 1 1 0-1h5Zm.5-9H5v2a1 1 0 0 0 1 1h4a1 1 0 0 0 1-1V2Zm-1.5.7a.8.8 0 1 1 0 1.6.8.8 0 0 1 0-1.6Z"
/>
</svg>
</span>
);
export default Save;