@elgato/icons
Version:
Icons used throughout the Elgato ecosystem.
15 lines (14 loc) • 1.29 kB
JavaScript
import { jsx as _jsx } from "react/jsx-runtime";
import { sizeMap } from "../../metadata/sizing.js";
const IconAlignTopFilled = (props) => {
const size = sizeMap[props?.size ?? "m"];
const label = props?.label ?? "Icon";
switch (props?.size) {
case "l":
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: "M3.75 4.5a.75.75 0 0 1 0-1.5h16.5a.75.75 0 0 1 0 1.5zM8 6a2 2 0 0 0-2 2v11a2 2 0 0 0 2 2h1a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2zM13 8a2 2 0 0 1 2-2h1a2 2 0 0 1 2 2v6a2 2 0 0 1-2 2h-1a2 2 0 0 1-2-2z" }) }));
default:
return (_jsx("svg", { xmlns: "http://www.w3.org/2000/svg", fill: "currentColor", viewBox: "0 0 20 20", width: size, height: size, "aria-label": label, role: "img", ...props, children: _jsx("path", { d: "M5 16.5A1.5 1.5 0 0 0 6.5 18h1A1.5 1.5 0 0 0 9 16.5v-10A1.5 1.5 0 0 0 7.5 5h-1A1.5 1.5 0 0 0 5 6.5zM2 2.5a.5.5 0 0 0 .5.5h15a.5.5 0 0 0 0-1h-15a.5.5 0 0 0-.5.5M12.5 14a1.5 1.5 0 0 1-1.5-1.5v-6A1.5 1.5 0 0 1 12.5 5h1A1.5 1.5 0 0 1 15 6.5v6a1.5 1.5 0 0 1-1.5 1.5z" }) }));
}
};
IconAlignTopFilled.iconName = "align-top--filled";
export default IconAlignTopFilled;