Sha256: 0501f11a998d002c131e730a7b992c090c43e218257a64cca4292850fac56e60
Contents?: true
Size: 669 Bytes
Versions: 12
Compression:
Stored size: 669 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class Ai < 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: 'M8 16v-6a2 2 0 1 1 4 0v6') s.path(d: 'M8 13h4') s.path(d: 'M16 8v8') end end end end end end
Version data entries
12 entries across 12 versions & 2 rubygems