Sha256: 257cf9e9885604e98819ba22cd18956761fc1069d67ae07ee91e7aa0a08b0739
Contents?: true
Size: 763 Bytes
Versions: 18
Compression:
Stored size: 763 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Lucide class Snowflake < Base def view_template 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.line(x1: '2', x2: '22', y1: '12', y2: '12') s.line(x1: '12', x2: '12', y1: '2', y2: '22') s.path(d: 'm20 16-4-4 4-4') s.path(d: 'm4 8 4 4-4 4') s.path(d: 'm16 4-4 4-4-4') s.path(d: 'm8 20 4-4 4 4') end end end end end end
Version data entries
18 entries across 18 versions & 2 rubygems