Sha256: e7c31ab592a862591163f6937c51e06cfd72bb695c213801428f427ef46290fb
Contents?: true
Size: 852 Bytes
Versions: 12
Compression:
Stored size: 852 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class CreativeCommonsNc < 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: 'M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0') s.path(d: 'M15 9h-4.5a1.5 1.5 0 0 0 0 3h3a1.5 1.5 0 0 1 0 3h-4.5') s.path(d: 'M12 7v2') s.path(d: 'M12 15v2') s.path(d: 'M6 6l3 3') s.path(d: 'M15 15l3 3') end end end end end end
Version data entries
12 entries across 12 versions & 2 rubygems