Sha256: 59bef30b173ff638ed4059717d23a8150bef778ba827744e45afcbe22a8c89d9
Contents?: true
Size: 1.23 KB
Versions: 14
Compression:
Stored size: 1.23 KB
Contents
# frozen_string_literal: true # rubocop:disable Metrics/MethodLength module Phlex module Icons module Tabler class CircleDashedNumber9 < 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: 'M8.56 3.69a9 9 0 0 0 -2.92 1.95') s.path(d: 'M3.69 8.56a9 9 0 0 0 -.69 3.44') s.path(d: 'M3.69 15.44a9 9 0 0 0 1.95 2.92') s.path(d: 'M8.56 20.31a9 9 0 0 0 3.44 .69') s.path(d: 'M15.44 20.31a9 9 0 0 0 2.92 -1.95') s.path(d: 'M20.31 15.44a9 9 0 0 0 .69 -3.44') s.path(d: 'M20.31 8.56a9 9 0 0 0 -1.95 -2.92') s.path(d: 'M15.44 3.69a9 9 0 0 0 -3.44 -.69') s.path( d: 'M10 15a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-6a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h3' ) end end end end end end # rubocop:enable Metrics/MethodLength
Version data entries
14 entries across 14 versions & 2 rubygems