Sha256: 5f18f55a64242b77b513c8914b6e65e8302df6c46905aedc1f386786c1c53df8
Contents?: true
Size: 707 Bytes
Versions: 12
Compression:
Stored size: 707 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class Scribble < 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: 'M3 15c2 3 4 4 7 4s7 -3 7 -7s-3 -7 -6 -7s-5 1.5 -5 4s2 5 6 5s8.408 -2.453 10 -5' ) end end end end end end
Version data entries
12 entries across 12 versions & 2 rubygems