15 lines
355 B
TypeScript
15 lines
355 B
TypeScript
import React from 'react';
|
|
|
|
export const XMarkIcon: React.FC<React.SVGProps<SVGSVGElement>> = (props) => (
|
|
<svg
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
fill="none"
|
|
viewBox="0 0 24 24"
|
|
strokeWidth={1.5}
|
|
stroke="currentColor"
|
|
{...props}
|
|
>
|
|
<path strokeLinecap="round" strokeLinejoin="round" d="M6 18 18 6M6 6l12 12" />
|
|
</svg>
|
|
);
|