status-web/packages/icons/src/save-icon.tsx

26 lines
1.0 KiB
XML

import { createIcon } from '../lib/create-icon'
const SvgSaveIcon = createIcon(props => {
return (
<svg
{...props}
xmlns="http://www.w3.org/2000/svg"
width={props.width}
height={props.height}
fill="none"
viewBox="0 0 20 20"
focusable={false}
aria-hidden={true}
>
<path
fill={props.color}
fillRule="evenodd"
d="M9.4 12.178V3h1.2v9.178l3.005-2.63.79.903-4 3.5-.395.346-.395-.346-4-3.5.79-.903 3.005 2.63ZM6.786 16.67c.805.167 1.849.23 3.214.23 1.366 0 2.41-.063 3.215-.23.798-.165 1.316-.424 1.674-.782.358-.358.616-.875.782-1.674.167-.805.23-1.849.23-3.214h1.2c0 1.384-.063 2.528-.255 3.458-.194.935-.53 1.7-1.109 2.279-.58.58-1.343.914-2.279 1.108-.93.193-2.073.255-3.458.255-1.384 0-2.528-.062-3.457-.255-.936-.194-1.7-.529-2.28-1.108-.579-.58-.914-1.344-1.108-2.28C2.963 13.529 2.9 12.385 2.9 11h1.2c0 1.365.063 2.409.23 3.214.166.799.424 1.316.782 1.674.358.358.876.617 1.674.782Z"
clipRule="evenodd"
/>
</svg>
)
})
export default SvgSaveIcon