Sha256: 2b59cc4a416696f0cbade90fd11e8abee13a9c34b937eb04e11b4414597c6f98
Contents?: true
Size: 1.22 KB
Versions: 14
Compression:
Stored size: 1.22 KB
Contents
# frozen_string_literal: true # rubocop:disable Metrics/AbcSize,Metrics/MethodLength module Phlex module Icons module Tabler class CircleDottedLetterK < 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: 'M10 8v8') s.path(d: 'M14 8l-2.5 4l2.5 4') s.path(d: 'M10 12h1.5') s.path(d: 'M7.5 4.21v.01') s.path(d: 'M4.21 7.5v.01') s.path(d: 'M3 12v.01') s.path(d: 'M4.21 16.5v.01') s.path(d: 'M7.5 19.79v.01') s.path(d: 'M12 21v.01') s.path(d: 'M16.5 19.79v.01') s.path(d: 'M19.79 16.5v.01') s.path(d: 'M21 12v.01') s.path(d: 'M19.79 7.5v.01') s.path(d: 'M16.5 4.21v.01') s.path(d: 'M12 3v.01') end end end end end end # rubocop:enable Metrics/AbcSize,Metrics/MethodLength
Version data entries
14 entries across 14 versions & 2 rubygems