Sha256: 5793a32d22d1ba9b2756091f2c34022e487a5bdd866d75391a94073431d65d7b
Contents?: true
Size: 722 Bytes
Versions: 14
Compression:
Stored size: 722 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class FolderBolt < Base def filled raise NotImplementedError end def outline svg( **attrs, xmlns: 'http://www.w3.org/2000/svg', viewbox: '0 0 24 24', fill: 'none', stroke: 'currentColor', stroke_width: '2', stroke_linecap: 'round', stroke_linejoin: 'round' ) do |s| s.path( d: 'M13 19h-8a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 2 -2h4l3 3h7a2 2 0 0 1 2 2v3.5' ) s.path(d: 'M19 16l-2 3h4l-2 3') end end end end end end
Version data entries
14 entries across 14 versions & 2 rubygems