Sha256: 36f55a2327023dc14e0b4ea972c7f9983a888cfbbd385c896cff679eff32b78e
Contents?: true
Size: 1.32 KB
Versions: 12
Compression:
Stored size: 1.32 KB
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class Circles < Base def filled svg( class: classes, xmlns: 'http://www.w3.org/2000/svg', viewbox: '0 0 24 24', fill: 'currentColor' ) do |s| s.path( d: 'M6.5 12a5 5 0 1 1 -4.995 5.217l-.005 -.217l.005 -.217a5 5 0 0 1 4.995 -4.783z' ) s.path( d: 'M17.5 12a5 5 0 1 1 -4.995 5.217l-.005 -.217l.005 -.217a5 5 0 0 1 4.995 -4.783z' ) s.path( d: 'M12 2a5 5 0 1 1 -4.995 5.217l-.005 -.217l.005 -.217a5 5 0 0 1 4.995 -4.783z' ) end end def outline svg( class: classes, 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: 'M12 7m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0') s.path(d: 'M6.5 17m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0') s.path(d: 'M17.5 17m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0') end end end end end end
Version data entries
12 entries across 12 versions & 2 rubygems