UNPKG

@elgato/icons

Version:

Icons used throughout the Elgato ecosystem.

10 lines (9 loc) 669 B
import { jsx as _jsx } from "react/jsx-runtime"; import { sizeMap } from "../../metadata/sizing.js"; const IconLogoTumblr = (props) => { const size = sizeMap[props?.size ?? "m"]; const label = props?.label ?? "Icon"; return (_jsx("svg", { xmlns: "http://www.w3.org/2000/svg", fill: "currentColor", viewBox: "0 0 24 24", width: size, height: size, "aria-label": label, role: "img", ...props, children: _jsx("path", { d: "M17.333 22H14c-2.992 0-5.25-1.55-5.25-5.25v-5.933H6V7.6A5.975 5.975 0 0 0 10.417 2h3.133v5.1h3.633v3.717H13.55v5.166c0 1.55.783 2.075 2.017 2.075h1.766z" }) })); }; IconLogoTumblr.iconName = "logo-tumblr"; export default IconLogoTumblr;