@styled-icons/fluentui-system-filled
Version:
FluentUI System (filled) icons available as Styled Components
25 lines • 951 B
JavaScript
import _extends from "@babel/runtime/helpers/extends";
import * as React from 'react';
import { StyledIconBase } from '@styled-icons/styled-icon';
export var Album = /*#__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: "M2 6c0-1.1.9-2 2-2h1v16H4a2 2 0 0 1-2-2V6zM16 8.5h-4a.5.5 0 0 0-.5.5v1c0 .28.22.5.5.5h4a.5.5 0 0 0 .5-.5V9a.5.5 0 0 0-.5-.5z"
}), /*#__PURE__*/React.createElement("path", {
d: "M6.5 20H20a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2H6.5v16zM12 7h4a2 2 0 0 1 2 2v1a2 2 0 0 1-2 2h-4a2 2 0 0 1-2-2V9c0-1.1.9-2 2-2z"
}));
});
Album.displayName = 'Album';
export var AlbumDimensions = {
height: 24,
width: 24
};