Sha256: d8fab16d42086a7817f46dd71b54b9622c0862c80311458f1844838bcf94d1a4
Contents?: true
Size: 856 Bytes
Versions: 12
Compression:
Stored size: 856 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class Toml < 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: 'M1.499 8h3') s.path(d: 'M2.999 8v8') s.path( d: 'M8.5 8a1.5 1.5 0 0 1 1.5 1.5v5a1.5 1.5 0 0 1 -3 0v-5a1.5 1.5 0 0 1 1.5 -1.5z' ) s.path(d: 'M13 16v-8l2 5l2 -5v8') s.path(d: 'M20 8v8h2.5') end end end end end end
Version data entries
12 entries across 12 versions & 2 rubygems