You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
564 B
26 lines
564 B
/*
|
|
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
*/
|
|
|
|
import {memo} from 'react';
|
|
|
|
export const IconClose = memo<JSX.IntrinsicElements['svg']>(function IconClose(
|
|
props
|
|
) {
|
|
return (
|
|
<svg
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
width="1.33em"
|
|
height="1.33em"
|
|
viewBox="0 0 24 24"
|
|
fill="none"
|
|
stroke="currentColor"
|
|
strokeWidth={2}
|
|
strokeLinecap="round"
|
|
strokeLinejoin="round"
|
|
{...props}>
|
|
<line x1={18} y1={6} x2={6} y2={18} />
|
|
<line x1={6} y1={6} x2={18} y2={18} />
|
|
</svg>
|
|
);
|
|
});
|
|
|