27 lines
719 B
TypeScript
27 lines
719 B
TypeScript
export function CodeXml({ className = '' }: { className?: string }) {
|
|
return (
|
|
<svg
|
|
className={className}
|
|
width="16"
|
|
height="16"
|
|
viewBox="0 0 16 16"
|
|
fill="none"
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
>
|
|
<g clipPath="url(#clip0_395_859)">
|
|
<path
|
|
d="M11.9999 10.6666L14.6666 7.99996L11.9999 5.33329M3.99992 5.33329L1.33325 7.99996L3.99992 10.6666M9.66659 2.66663L6.33325 13.3333"
|
|
stroke="currentColor"
|
|
strokeLinecap="round"
|
|
strokeLinejoin="round"
|
|
/>
|
|
</g>
|
|
<defs>
|
|
<clipPath id="clip0_395_859">
|
|
<rect width="16" height="16" fill="white" />
|
|
</clipPath>
|
|
</defs>
|
|
</svg>
|
|
);
|
|
}
|