nx/nx-dev/ui-common/src/lib/x-icon.tsx
Nicholas Cunningham 82831bcee6
feat(nx-dev): add customers & company pages (#26813)
Co-authored-by: Juri <juri.strumpflohner@gmail.com>
2024-07-12 11:22:35 -04:00

15 lines
447 B
TypeScript

import { FC, SVGProps } from 'react';
export const XIcon: FC<SVGProps<SVGSVGElement>> = (props) => (
<svg
fill="currentColor"
role="img"
preserveAspectRatio="xMidYMid meet"
viewBox="0 0 24 24"
xmlns="http://www.w3.org/2000/svg"
{...props}
>
<path d="M18.901 1.153h3.68l-8.04 9.19L24 22.846h-7.406l-5.8-7.584-6.638 7.584H.474l8.6-9.83L0 1.154h7.594l5.243 6.932ZM17.61 20.644h2.039L6.486 3.24H4.298Z" />
</svg>
);