Sha256: 2ddd0c003f0fc25b4d96a1f0d692444a52f8aad84dfead9599177566297099e6
Contents?: true
Size: 671 Bytes
Versions: 12
Compression:
Stored size: 671 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class ArrowCapsule < 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: 'M18 15a6 6 0 1 1 -12 0v-6a6 6 0 1 1 12 0v2') s.path(d: 'M15 8l3 3l3 -3') end end end end end end
Version data entries
12 entries across 12 versions & 2 rubygems