Sha256: 152b2ab9a24d8cadd28014cd8b473e6bd3125e2340d8b53c72a4ce9e396f08ba
Contents?: true
Size: 935 Bytes
Versions: 12
Compression:
Stored size: 935 Bytes
Contents
# frozen_string_literal: true # rubocop:disable Metrics/MethodLength module Phlex module Icons module Tabler class Logs < 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: 'M4 12h.01') s.path(d: 'M4 6h.01') s.path(d: 'M4 18h.01') s.path(d: 'M8 18h2') s.path(d: 'M8 12h2') s.path(d: 'M8 6h2') s.path(d: 'M14 6h6') s.path(d: 'M14 12h6') s.path(d: 'M14 18h6') end end end end end end # rubocop:enable Metrics/MethodLength
Version data entries
12 entries across 12 versions & 2 rubygems