Sha256: 345509f409094a8c0a9c07b17ee6ab54c610204aad9b58e87bff20eb0e0da2b9
Contents?: true
Size: 724 Bytes
Versions: 12
Compression:
Stored size: 724 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class CurlyLoop < Base def filled raise NotImplementedError 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: 'M21 8c-4 0 -7 2 -7 5a3 3 0 0 0 6 0c0 -3 -2.5 -5 -8 -5s-8 2 -8 5a3 3 0 0 0 6 0c0 -3 -3 -5 -7 -5' ) end end end end end end
Version data entries
12 entries across 12 versions & 2 rubygems