aboutsummaryrefslogtreecommitdiff
path: root/icons-react/icons-js/books.js
blob: 784a9cf4a07471c9115e04dc3444918d42d1c2bf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
import * as React from "react";

function IconBooks({
  size = 24,
  color = "currentColor",
  stroke = 2,
  ...props
}) {
  return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-books" width={size} height={size} viewBox="0 0 24 24" strokeWidth={stroke} stroke={color} fill="none" strokeLinecap="round" strokeLinejoin="round" {...props}><desc>{"Download more icon variants from https://tabler-icons.io/i/books"}</desc><path stroke="none" d="M0 0h24v24H0z" fill="none" /><rect x={5} y={4} width={4} height={16} rx={1} /><rect x={9} y={4} width={4} height={16} rx={1} /><path d="M5 8h4" /><path d="M9 16h4" /><path d="M13.803 4.56l2.184 -.53c.562 -.135 1.133 .19 1.282 .732l3.695 13.418a1.02 1.02 0 0 1 -.634 1.219l-.133 .041l-2.184 .53c-.562 .135 -1.133 -.19 -1.282 -.732l-3.695 -13.418a1.02 1.02 0 0 1 .634 -1.219l.133 -.041z" /><path d="M14 9l4 -1" /><path d="M16 16l3.923 -.98" /></svg>;
}

export default IconBooks;