Sha256: 6fc72002673cda73cb1b4d6e5de72c47ca389f261d1b4c2456f8da5044fef568
Contents?: true
Size: 700 Bytes
Versions: 14
Compression:
Stored size: 700 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class CapRounded < 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: 'M20 6h-9a6 6 0 1 0 0 12h9') s.path(d: 'M13 12a2 2 0 1 1 -4 0a2 2 0 0 1 4 0') s.path(d: 'M13 12h7') end end end end end end
Version data entries
14 entries across 14 versions & 2 rubygems