Sha256: da96a96e060b8988567f544476591a611dad30080f289f3ecb528ac99a1798be
Contents?: true
Size: 688 Bytes
Versions: 6
Compression:
Stored size: 688 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class BrandOpera < 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: 'M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0') s.path(d: 'M12 12m-3 0a3 5 0 1 0 6 0a3 5 0 1 0 -6 0') end end end end end end
Version data entries
6 entries across 6 versions & 2 rubygems