Sha256: ba6e9819ffff3c338fd69b5b3784ae8dfb23364025f6fbc0c16485a5ee332438
Contents?: true
Size: 601 Bytes
Versions: 12
Compression:
Stored size: 601 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class BrandUnsplash < Base def filled raise NotImplementedError end def outline svg( class: classes, 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' ) { |s| s.path(d: 'M4 11h5v4h6v-4h5v9h-16zm5 -7h6v4h-6z') } end end end end end
Version data entries
12 entries across 12 versions & 2 rubygems