Sha256: dd3559bbf3c17adfa68801a08756a952a30f69af25b3a11a0e21033da2025211
Contents?: true
Size: 868 Bytes
Versions: 18
Compression:
Stored size: 868 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class NoCopyright < 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: 'M14 9.75a3.016 3.016 0 0 0 -4.163 .173a2.993 2.993 0 0 0 0 4.154a3.016 3.016 0 0 0 4.163 .173' ) s.path(d: 'M6 6l1.5 1.5') s.path(d: 'M16.5 16.5l1.5 1.5') end end end end end end
Version data entries
18 entries across 18 versions & 2 rubygems