Sha256: f26f200d54e0efb52b9701d167e7288b2ce3ae96d57dfefe4189f6dcfb41a6a3
Contents?: true
Size: 939 Bytes
Versions: 14
Compression:
Stored size: 939 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class Brain < 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: 'M15.5 13a3.5 3.5 0 0 0 -3.5 3.5v1a3.5 3.5 0 0 0 7 0v-1.8') s.path(d: 'M8.5 13a3.5 3.5 0 0 1 3.5 3.5v1a3.5 3.5 0 0 1 -7 0v-1.8') s.path(d: 'M17.5 16a3.5 3.5 0 0 0 0 -7h-.5') s.path(d: 'M19 9.3v-2.8a3.5 3.5 0 0 0 -7 0') s.path(d: 'M6.5 16a3.5 3.5 0 0 1 0 -7h.5') s.path(d: 'M5 9.3v-2.8a3.5 3.5 0 0 1 7 0v10') end end end end end end
Version data entries
14 entries across 14 versions & 2 rubygems