styled-icons
Version:
Icons from packs like Font Awesome, Material, Octicons, Feather, Icomoon, and Boxicons available as Styled Components
14 lines (13 loc) • 945 B
JavaScript
import { __assign } from "tslib";
import * as React from 'react';
import { StyledIconBase } from '../../StyledIconBase';
export var Film = React.forwardRef(function (props, ref) {
var attrs = {
"fill": "currentColor",
"xmlns": "http://www.w3.org/2000/svg",
};
return (React.createElement(StyledIconBase, __assign({ iconAttrs: attrs, iconVerticalAlign: "middle", iconViewBox: "0 0 24 24" }, props, { ref: ref }),
React.createElement("path", { d: "M8 8v7h8V8H8zm7 6H9V9h6v5zm2-12h-3v2h-4V2H7C5.346 2 4 3.346 4 5v13c0 1.654 1.346 3 3 3h3v-2h4v2h3c1.654 0 3-1.346 3-3V5c0-1.654-1.346-3-3-3zm1 4a1 1 0 100 2v1a1 1 0 100 2v1a1 1 0 100 2v1a1 1 0 100 2v1c0 .551-.448 1-1 1h-1v-2H8v2H7c-.552 0-1-.449-1-1v-1a1 1 0 100-2v-1a1 1 0 100-2v-1a1 1 0 100-2V8a1 1 0 100-2V5c0-.551.448-1 1-1h1v2h8V4h1c.552 0 1 .449 1 1v1z", key: "k0" })));
});
Film.displayName = 'Film';
export var FilmDimensions = { height: 24, width: 24 };