Sha256: 012037c876127daf742970f3784fb922bd62ed26ced92d55e67fa212dcc7c854
Contents?: true
Size: 755 Bytes
Versions: 12
Compression:
Stored size: 755 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class EditCircle < 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 15l8.385 -8.415a2.1 2.1 0 0 0 -2.97 -2.97l-8.415 8.385v3h3z') s.path(d: 'M16 5l3 3') s.path(d: 'M9 7.07a7 7 0 0 0 1 13.93a7 7 0 0 0 6.929 -6') end end end end end end
Version data entries
12 entries across 12 versions & 2 rubygems