appirio-tech-react-components-test10
Version:
Topcoder UI Kit library of components for our React apps.
19 lines (16 loc) • 702 B
JSX
import React from 'react'
const SaveIcon = ({ width = '14px', height = '14px' }) => {
return (
<svg width={width} height={height} viewBox="0 0 16 13" version="1.1" xmlns="http://www.w3.org/2000/svg">
<title>Fill 88</title>
<desc>Created with Sketch.</desc>
<defs></defs>
<g id="Page-1" stroke="none" strokeWidth="1" fill="none" fillRule="evenodd">
<g id="Settings-form-elements" transform="translate(-1122.000000, -1505.000000)" fill="#1A85FF">
<polygon id="Fill-88" points="1127.6 1513 1124.4 1509.8 1122 1512.2 1127.6 1517.8 1138 1507.4 1135.6 1505"></polygon>
</g>
</g>
</svg>
)
}
export default SaveIcon