Sha256: 1601a90a3a8bb8f24bbbf6dff69cb02fb2b593d66793d83b786e11bfbfe233a1
Contents?: true
Size: 738 Bytes
Versions: 12
Compression:
Stored size: 738 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class BuildingLighthouse < 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: 'M12 3l2 3l2 15h-8l2 -15z') s.path(d: 'M8 9l8 0') s.path(d: 'M3 11l2 -2l-2 -2') s.path(d: 'M21 11l-2 -2l2 -2') end end end end end end
Version data entries
12 entries across 12 versions & 2 rubygems