@styled-icons/fluentui-system-filled
Version:
FluentUI System (filled) icons available as Styled Components
23 lines • 1.02 kB
JavaScript
import _extends from "@babel/runtime/helpers/extends";
import * as React from 'react';
import { StyledIconBase } from '@styled-icons/styled-icon';
export var Dock = /*#__PURE__*/React.forwardRef(function (props, ref) {
var attrs = {
"fill": "currentColor",
"xmlns": "http://www.w3.org/2000/svg"
};
return /*#__PURE__*/React.createElement(StyledIconBase, _extends({
iconAttrs: attrs,
iconVerticalAlign: "middle",
iconViewBox: "0 0 24 24"
}, props, {
ref: ref
}), /*#__PURE__*/React.createElement("path", {
d: "M12.7 3.3a1 1 0 0 0-1.4 0L7.8 6.8a1 1 0 0 0 1.4 1.4L11 6.42V15a1 1 0 1 0 2 0V6.41l1.8 1.8a1 1 0 1 0 1.4-1.42l-3.5-3.5ZM4 12.74c0-.41.34-.75.75-.75H9a1 1 0 1 0 0-2H4.75A2.75 2.75 0 0 0 2 12.75v4.5A2.75 2.75 0 0 0 4.75 20h14.5A2.75 2.75 0 0 0 22 17.25v-4.5A2.75 2.75 0 0 0 19.25 10H15a1 1 0 1 0 0 2h4.25c.41 0 .75.34.75.75v4.5c0 .41-.34.75-.75.75H4.75a.75.75 0 0 1-.75-.75v-4.5Z"
}));
});
Dock.displayName = 'Dock';
export var DockDimensions = {
height: 24,
width: 24
};