1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-09-15 17:50:48 +02:00
unleash.unleash/website/src/icons/close.tsx
2022-03-02 10:50:46 +01:00

17 lines
413 B
TypeScript

import React from 'react';
import styles from './styles.module.css';
const svg = () => (
<svg
className={styles['icon']}
viewBox="0 0 12 12"
xmlns="http://www.w3.org/2000/svg"
>
<path d="m6 5.293 4.789-4.79.707.708-4.79 4.79 4.79 4.789-.707.707-4.79-4.79-4.789 4.79-.707-.707L5.293 6 .502 1.211 1.21.504 6 5.294z" />
</svg>
);
const Icon = svg;
export default Icon;