Sha256: 4bffd3d228f11b884a18e2d9cce5a604e0a5d721d51ec4a0f2599f2e00e523c0
Contents?: true
Size: 675 Bytes
Versions: 12
Compression:
Stored size: 675 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class CircleChevronLeft < 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: 'M13 15l-3 -3l3 -3') s.path(d: 'M21 12a9 9 0 1 0 -18 0a9 9 0 0 0 18 0z') end end end end end end
Version data entries
12 entries across 12 versions & 2 rubygems