Sha256: 0df335b8da0b49e6b10ae1bb8c2582c2b2f42d18128ba42731e79c39c6721b79
Contents?: true
Size: 751 Bytes
Versions: 12
Compression:
Stored size: 751 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class BrandRevolut < 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: 'M5 10h3v10h-3z') s.path( d: 'M14.5 4h-9.5v3h9.4a1.5 1.5 0 0 1 0 3h-3.4v4l4 6h4l-5 -7h.5a4.5 4.5 0 1 0 0 -9z' ) end end end end end end
Version data entries
12 entries across 12 versions & 2 rubygems