Sha256: 0cf3ad333bc1c2ea61ea6bdd4e95c8c4b215af9e8f7a83eac61ea3ea8c9c0fe6
Contents?: true
Size: 776 Bytes
Versions: 18
Compression:
Stored size: 776 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class Ad2 < Base def filled raise NotImplementedError end def outline svg( **attrs, 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: 'M11.933 5h-6.933v16h13v-8') s.path(d: 'M14 17h-5') s.path(d: 'M9 13h5v-4h-5z') s.path(d: 'M15 5v-2') s.path(d: 'M18 6l2 -2') s.path(d: 'M19 9h2') end end end end end end
Version data entries
18 entries across 18 versions & 2 rubygems