Sha256: c725cf902ea6714c451ee7842462d5ccb07ea7e4ce86930e32bf1def39c986ce
Contents?: true
Size: 816 Bytes
Versions: 12
Compression:
Stored size: 816 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class BrandDolbyDigital < 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: 'M21 6v12h-.89c-3.34 0 -6.047 -2.686 -6.047 -6s2.707 -6 6.046 -6h.891z' ) s.path( d: 'M3.063 6v12h.891c3.34 0 6.046 -2.686 6.046 -6s-2.707 -6 -6.046 -6h-.89z' ) end end end end end end
Version data entries
12 entries across 12 versions & 2 rubygems