Sha256: 978d0e8a578f77d21e84c9d61890d511f738a0719b1e9f69ed0e22a1433dede9
Contents?: true
Size: 722 Bytes
Versions: 12
Compression:
Stored size: 722 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class BrandFiverr < 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: 'M15 3h-2a6 6 0 0 0 -6 6h-3v4h3v8h4v-7h4v7h4v-11h-8v-1.033a1.967 1.967 0 0 1 2 -1.967h2v-4z' ) end end end end end end
Version data entries
12 entries across 12 versions & 2 rubygems