Sha256: b537dab96b75a22e80cdd1c545eb64a2aa59c9362672765a70b261ec2d21311e
Contents?: true
Size: 678 Bytes
Versions: 14
Compression:
Stored size: 678 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class BrandComedyCentral < 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: 'M5.343 17.657a8 8 0 1 0 0 -11.314') s.path(d: 'M13.828 9.172a4 4 0 1 0 0 5.656') end end end end end end
Version data entries
14 entries across 14 versions & 2 rubygems