Sha256: 359b352882f54aafd2fc90966caf7b84e9feec007c72d5065ded2a5d4f277b3b
Contents?: true
Size: 995 Bytes
Versions: 18
Compression:
Stored size: 995 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class BuildingCarousel < 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: 'M12 12m-6 0a6 6 0 1 0 12 0a6 6 0 1 0 -12 0') s.path(d: 'M5 8m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0') s.path(d: 'M12 4m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0') s.path(d: 'M19 8m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0') s.path(d: 'M5 16m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0') s.path(d: 'M19 16m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0') s.path(d: 'M8 22l4 -10l4 10') end end end end end end
Version data entries
18 entries across 18 versions & 2 rubygems