UNPKG

@elgato/icons

Version:

Icons used throughout the Elgato ecosystem.

10 lines (9 loc) 1.51 kB
import { jsx as _jsx } from "react/jsx-runtime"; import { sizeMap } from "../../metadata/sizing.js"; const IconLogoWindsurf = (props) => { const size = sizeMap[props?.size ?? "m"]; const label = props?.label ?? "Icon"; return (_jsx("svg", { viewBox: "0 0 24 24", fill: "currentColor", xmlns: "http://www.w3.org/2000/svg", width: size, height: size, "aria-label": label, role: "img", ...props, children: _jsx("path", { d: "M21.8156 6.22249H21.625C20.6219 6.22093 19.8079 7.03327 19.8079 8.03623V12.0926C19.8079 12.9026 19.1384 13.5587 18.3415 13.5587C17.8681 13.5587 17.3955 13.3205 17.115 12.9205L12.9722 7.0036C12.6285 6.51227 12.0691 6.21936 11.4637 6.21936C10.5192 6.21936 9.66922 7.02234 9.66922 8.01359V12.0933C9.66922 12.9034 9.00519 13.5595 8.20289 13.5595C7.72791 13.5595 7.25603 13.3212 6.97557 12.9213L2.33983 6.29982C2.23514 6.14983 2 6.22406 2 6.40684V9.94448C2 10.1234 2.05469 10.2968 2.15702 10.4436L6.71933 16.9589C6.98886 17.344 7.38651 17.6299 7.84507 17.7338C8.9927 17.9946 10.0489 17.1112 10.0489 15.9856V11.9082C10.0489 11.0982 10.7051 10.442 11.5152 10.442H11.5176C12.0059 10.442 12.4636 10.6803 12.7441 11.0802L16.8877 16.9964C17.2322 17.4885 17.7627 17.7806 18.3954 17.7806C19.361 17.7806 20.1883 16.9769 20.1883 15.9864V11.9074C20.1883 11.0974 20.8446 10.4413 21.6547 10.4413H21.8164C21.9179 10.4413 22 10.3593 22 10.2577V6.40605C22 6.30452 21.9179 6.22249 21.8164 6.22249H21.8156Z" }) })); }; IconLogoWindsurf.iconName = "logo-windsurf"; export default IconLogoWindsurf;