Sha256: d712e2a37abaa9f84914f856c57c492406b65a969d4df7291a63b931cae66d86
Contents?: true
Size: 1.5 KB
Versions: 14
Compression:
Stored size: 1.5 KB
Contents
# frozen_string_literal: true # rubocop:disable Layout/LineLength module Phlex module Icons module Tabler class ChartDots < Base def filled svg( **attrs, xmlns: 'http://www.w3.org/2000/svg', viewbox: '0 0 24 24', fill: 'currentColor' ) do |s| s.path( d: 'M3 2a1 1 0 0 1 1 1v17h17a1 1 0 0 1 .993 .883l.007 .117a1 1 0 0 1 -1 1h-18a1 1 0 0 1 -1 -1v-18a1 1 0 0 1 1 -1z' ) s.path( d: 'M19 4a3 3 0 1 1 -.651 5.93l-2.002 3.202a3 3 0 1 1 -4.927 .337l-1.378 -1.655a3 3 0 1 1 1.538 -1.282l1.378 1.654a2.994 2.994 0 0 1 1.693 -.115l2.002 -3.203a3 3 0 0 1 2.347 -4.868z' ) end 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: 'M3 3v18h18') s.path(d: 'M9 9m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0') s.path(d: 'M19 7m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0') s.path(d: 'M14 15m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0') s.path(d: 'M10.16 10.62l2.34 2.88') s.path(d: 'M15.088 13.328l2.837 -4.586') end end end end end end # rubocop:enable Layout/LineLength
Version data entries
14 entries across 14 versions & 2 rubygems