Sha256: 5634fa5052765aadcb822a138a52037056517e843f73d727b1d12b00f8a5797e
Contents?: true
Size: 761 Bytes
Versions: 12
Compression:
Stored size: 761 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class ScriptX < 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: '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: 'M17 17l4 4m0 -4l-4 4') end end end end end end
Version data entries
12 entries across 12 versions & 2 rubygems