@hyperlane-xyz/widgets
Version:
Common react components for Hyperlane projects
8 lines • 602 B
JavaScript
import React, { memo } from 'react';
import { ColorPalette } from '../color.js';
function _LogoutIcon({ color = ColorPalette.Black, width = 48, height = 48, ...rest }) {
return (React.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 48 48", height: height, width: width, ...rest },
React.createElement("path", { fill: color, d: "M9 42q-1.2 0-2.1-.9Q6 40.2 6 39V9q0-1.2.9-2.1Q7.8 6 9 6h14.55v3H9v30h14.55v3Zm24.3-9.25-2.15-2.15 5.1-5.1h-17.5v-3h17.4l-5.1-5.1 2.15-2.15 8.8 8.8Z" })));
}
export const LogoutIcon = memo(_LogoutIcon);
//# sourceMappingURL=Logout.js.map