packages/graph-explorer/src/components/icons/ArrowTriangle.tsx (16 lines of code) (raw):
import type { IconBaseProps } from "./IconBase";
import IconBase from "./IconBase";
export const ArrowTriangle = (props: IconBaseProps) => {
return (
<IconBase {...props}>
<path
d="M23 12.1667L11.75 18.6619L11.75 5.67147L23 12.1667Z"
fill="currentColor"
/>
<path
fillRule="evenodd"
clipRule="evenodd"
d="M1 11L18.875 11V13L1 13L1 11Z"
fill="currentColor"
/>
</IconBase>
);
};
export default ArrowTriangle;