Sha256: c9d2c36b621dd87cedb8f8cb1971114a697282edea7861cb8eed894f4bfda4f8
Contents?: true
Size: 786 Bytes
Versions: 12
Compression:
Stored size: 786 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class ScriptPlus < 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: 'M17 19h4') s.path( d: 'M14 20h-8a3 3 0 0 1 0 -6h11a3 3 0 0 0 -3 3m7 -3v-8a2 2 0 0 0 -2 -2h-10a2 2 0 0 0 -2 2v8' ) s.path(d: 'M19 17v4') end end end end end end
Version data entries
12 entries across 12 versions & 2 rubygems