Fixed issue of code (#50)

* Fixed issue of code
* Fixed wms-34 comment as per jira ticket
* Updated: Linted and fixed import
* Renamed: File Component
* Added: route

Co-authored-by: Llewellyn D'souza <lledsouza2209@gmail.com>
This commit is contained in:
Hiren Padsala
2022-02-10 11:54:16 +05:30
committed by GitHub
parent e2d720c044
commit e79ae36f4f
3 changed files with 552 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
import React from 'react';
const CrossIcon = ({ width = 30, height = 30 }) => (
<svg width={width} height={height} viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg">
<g opacity="0.5">
<circle cx="20" cy="20" r="20" fill="#C2C2C2"/>
<path d="M26.25 13.75L13.75 26.25" stroke='white' strokeWidth="1.5" strokeLinecap="round" strokeLinejoin="round"/>
<path d="M13.75 13.75L26.25 26.25" stroke='white' strokeWidth="1.5" strokeLinecap="round" strokeLinejoin="round"/>
</g>
</svg>
);
export default CrossIcon;
CrossIcon.propTypes = {
width: Number,
height: Number
};