Sha256: 955d6e4744c1154f4a2adc90457ec90ebb9ecd751b7cb63811d817748a37d200
Contents?: true
Size: 663 Bytes
Versions: 12
Compression:
Stored size: 663 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class LetterA < 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' ) do |s| s.path(d: 'M7 20v-12a4 4 0 0 1 4 -4h2a4 4 0 0 1 4 4v12') s.path(d: 'M7 13l10 0') end end end end end end
Version data entries
12 entries across 12 versions & 2 rubygems