Sha256: 57c3e45ee225a9fbce9c69b1028e14bf74479de241555f0e88432507e5909c85
Contents?: true
Size: 617 Bytes
Versions: 12
Compression:
Stored size: 617 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class BrandPrintables < 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: 'M6 21l12 -7v-7.5l-6 -3.5l-6 3.5l6 3.5v7.5l-6 -3.5z') } end end end end end
Version data entries
12 entries across 12 versions & 2 rubygems