styled-icons
Version:
Icons from packs like Font Awesome, Material, Octicons, Feather, Icomoon, and Boxicons available as Styled Components
15 lines (14 loc) • 883 B
JavaScript
import { __assign } from "tslib";
import * as React from 'react';
import { StyledIconBase } from '../../StyledIconBase';
export var Playlist = 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: "M13 16.493C13 18.427 14.573 20 16.507 20s3.507-1.573 3.507-3.507c0-.177-.027-.347-.053-.517H20V6h2V4h-3a1 1 0 00-1 1v8.333a3.465 3.465 0 00-1.493-.346A3.51 3.51 0 0013 16.493zM2 5h14v2H2z", key: "k0" }),
React.createElement("path", { d: "M2 9h14v2H2zm0 4h9v2H2zm0 4h9v2H2z", key: "k1" })));
});
Playlist.displayName = 'Playlist';
export var PlaylistDimensions = { height: 24, width: 24 };