Sha256: 49cd05ccf1ef9a8782cdd7056738d31a91ea07e1ec0b920e85e117d575f393ae
Contents?: true
Size: 602 Bytes
Versions: 12
Compression:
Stored size: 602 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class LetterRSmall < 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' ) { |s| s.path(d: 'M10 12h2a2 2 0 1 0 0 -4h-2v8m4 0l-3 -4') } end end end end end
Version data entries
12 entries across 12 versions & 2 rubygems