@hyperlane-xyz/widgets
Version:
Common react components for Hyperlane projects
9 lines • 688 B
JavaScript
import React, { memo } from 'react';
import { ColorPalette } from '../color.js';
// Paper airplane shape
function _AirplaneIcon({ color, ...rest }) {
return (React.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", ...rest },
React.createElement("path", { d: "M15.964.686a.5.5 0 0 0-.65-.65L.767 5.855H.766l-.452.18a.5.5 0 0 0-.082.887l.41.26.001.002 4.995 3.178 3.178 4.995.002.002.26.41a.5.5 0 0 0 .886-.083l6-15Zm-1.833 1.89L6.637 10.07l-.215-.338a.5.5 0 0 0-.154-.154l-.338-.215 7.494-7.494 1.178-.471-.47 1.178Z", fill: color || ColorPalette.Blue })));
}
export const AirplaneIcon = memo(_AirplaneIcon);
//# sourceMappingURL=Airplane.js.map