@vector-im/compound-design-tokens
Version:
Compound design tokens
19 lines • 670 B
JavaScript
import { forwardRef } from "react";
import { jsx as _jsx } from "react/jsx-runtime";
function FullScreenIcon(props, ref) {
return /*#__PURE__*/_jsx("svg", {
xmlns: "http://www.w3.org/2000/svg",
width: "1em",
height: "1em",
fill: "currentColor",
viewBox: "0 0 24 24",
ref: ref,
...props,
children: /*#__PURE__*/_jsx("path", {
d: "M4 14a1 1 0 0 1 1 1v4h4a1 1 0 1 1 0 2H3v-6a1 1 0 0 1 1-1m16 0a1 1 0 0 1 1 1v6h-6a1 1 0 1 1 0-2h4v-4a1 1 0 0 1 1-1M9 3a1 1 0 0 1 0 2H5v4a1 1 0 0 1-2 0V3zm12 6a1 1 0 1 1-2 0V5h-4a1 1 0 1 1 0-2h6z"
})
});
}
;
FullScreenIcon.displayName = "FullScreenIcon";
export default forwardRef(FullScreenIcon);