25 lines
990 B
TypeScript
25 lines
990 B
TypeScript
|
export const Cross = () => {
|
||
|
return (
|
||
|
<svg width="50" height="50" viewBox="0 0 50 50" fill="currentColor">
|
||
|
<path d="M47 47H3V50H47V47Z" />
|
||
|
<path d="M3 3H0V47H3V3Z" />
|
||
|
<path d="M47 0H3V3H47V0Z" />
|
||
|
<path d="M50 3H47V47H50V3Z" />
|
||
|
<path d="M17.5 32.5H14.5V35.5H17.5V32.5Z" />
|
||
|
<path d="M20.5 29.5H17.5V32.5H20.5V29.5Z" />
|
||
|
<path d="M23.5 26.5H20.5V29.5H23.5V26.5Z" />
|
||
|
<path d="M26.5 23.5H23.5V26.5H26.5V23.5Z" />
|
||
|
<path d="M29.5 20.5H26.5V23.5H29.5V20.5Z" />
|
||
|
<path d="M32.5 17.5H29.5V20.5H32.5V17.5Z" />
|
||
|
<path d="M35.5 14.5H32.5V17.5H35.5V14.5Z" />
|
||
|
<path d="M32.5 32.5V35.5H35.5V32.5H32.5Z" />
|
||
|
<path d="M29.5 29.5V32.5H32.5V29.5H29.5Z" />
|
||
|
<path d="M26.5 26.5V29.5H29.5V26.5H26.5Z" />
|
||
|
<path d="M23.5 23.5V26.5H26.5V23.5H23.5Z" />
|
||
|
<path d="M20.5 20.5V23.5H23.5V20.5H20.5Z" />
|
||
|
<path d="M17.5 17.5V20.5H20.5V17.5H17.5Z" />
|
||
|
<path d="M14.5 14.5V17.5H17.5V14.5H14.5Z" />
|
||
|
</svg>
|
||
|
);
|
||
|
};
|