Sha256: 1a7e6643d278dea06dc7c74cfbe71f376724da48e65a41bf13235d8317de3472
Contents?: true
Size: 809 Bytes
Versions: 14
Compression:
Stored size: 809 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class BrandDolbyDigital < Base def filled raise NotImplementedError end def outline svg( **attrs, 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
14 entries across 14 versions & 2 rubygems