Sha256: dad4518eeae94c3cfdfa39ca2895387bb02f0a9ddc838a42154f1f5814ee9a82
Contents?: true
Size: 663 Bytes
Versions: 12
Compression:
Stored size: 663 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class BrandFlutter < 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 14l-3 -3l8 -8h6z') s.path(d: 'M14 21l-5 -5l5 -5h5l-5 5l5 5z') end end end end end end
Version data entries
12 entries across 12 versions & 2 rubygems