Sha256: c025163fa184aa3fed642dec6f611723eca62a645198830077345fa25891be1e
Contents?: true
Size: 704 Bytes
Versions: 12
Compression:
Stored size: 704 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class LogicBuffer < 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: 'M22 12h-5') s.path(d: 'M2 9h5') s.path(d: 'M2 15h5') s.path(d: 'M7 5l10 7l-10 7z') end end end end end end
Version data entries
12 entries across 12 versions & 2 rubygems