Sha256: bff62f7fa6e42f2b7fc31cd91b1e605e26d72840bb871b98865cd2d44ef726af
Contents?: true
Size: 740 Bytes
Versions: 14
Compression:
Stored size: 740 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class CrystalBall < 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: 'M6.73 17.018a8 8 0 1 1 10.54 0') s.path(d: 'M5 19a2 2 0 0 0 2 2h10a2 2 0 1 0 0 -4h-10a2 2 0 0 0 -2 2z') s.path(d: 'M11 7a3 3 0 0 0 -3 3') end end end end end end
Version data entries
14 entries across 14 versions & 2 rubygems