-
Notifications
You must be signed in to change notification settings - Fork 53
Expand file tree
/
Copy pathicons.js
More file actions
20 lines (18 loc) · 1.73 KB
/
Copy pathicons.js
File metadata and controls
20 lines (18 loc) · 1.73 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
const Replace = () => (
<svg id="replace" xmlns="http://www.w3.org/2000/svg" width="64" height="64" viewBox="0 0 64 64">
<path d="M59,22H48V5a5.006,5.006,0,0,0-5-5H5A5.006,5.006,0,0,0,0,5V37a5.006,5.006,0,0,0,5,5H16V59a5.006,5.006,0,0,0,5,5H59a5.006,5.006,0,0,0,5-5V27A5.006,5.006,0,0,0,59,22ZM5,40a3,3,0,0,1-3-3V5A3,3,0,0,1,5,2H43a3,3,0,0,1,3,3V22H21a5.006,5.006,0,0,0-5,5V40ZM62,59a3,3,0,0,1-3,3H21a3,3,0,0,1-3-3V27a3,3,0,0,1,3-3H59a3,3,0,0,1,3,3Z" />
<path d="M52,10h4a1,1,0,0,1,1,1v3.586l-.293-.293a1,1,0,0,0-1.414,1.414l2,2a1,1,0,0,0,1.416,0l2-2a1,1,0,0,0-1.414-1.414L59,14.586V11a3,3,0,0,0-3-3H52a1,1,0,0,0,0,2Z" />
<path d="M12,54H8a1,1,0,0,1-1-1V49.414l.293.293a1,1,0,0,0,1.414-1.414l-2-2a.99.99,0,0,0-.326-.217,1,1,0,0,0-1.09.217l-2,2a1,1,0,0,0,1.414,1.414L5,49.414V53a3,3,0,0,0,3,3h4a1,1,0,0,0,0-2Z" />
<path d="M48.3,36.345a5,5,0,0,0-9.062,0L38.279,38.4a4.99,4.99,0,0,0-7.984,1.313L22.32,55.659A3,3,0,0,0,25,60H54.625a3,3,0,0,0,2.719-4.269ZM25,58a1,1,0,0,1-.894-1.448L32.083,40.6a3,3,0,0,1,5.366,0l8.7,17.4Zm30.468-.463a.984.984,0,0,1-.844.463H48.385L39.567,40.364l1.481-3.174a3,3,0,0,1,5.438,0l9.047,19.387a.984.984,0,0,1-.063.96Z" />
<path d="M32.767,34a4,4,0,1,0-4-4A4,4,0,0,0,32.767,34Zm0-6a2,2,0,1,1-2,2A2,2,0,0,1,32.767,28Z" />
</svg>
);
const Remove = () => (
<svg xmlns="http://www.w3.org/2000/svg" width="44" height="44" viewBox="0 0 44 44">
<path
d="M175.976,132.887a1.524,1.524,0,0,0-2.154,0l-19.39,19.382-19.39-19.382A1.523,1.523,0,0,0,132.849,135l.038.038,19.39,19.382L132.887,173.8A1.523,1.523,0,1,0,135,175.994l.037-.037,19.39-19.382,19.39,19.382a1.523,1.523,0,0,0,2.154-2.153l-19.39-19.382,19.39-19.382A1.522,1.522,0,0,0,175.976,132.887Z"
transform="translate(-132.422 -132.422)"
/>
</svg>
);
export { Replace, Remove };