Sha256: ec2ad84ea0e60d1daf65668b38a13d807e72473186e983b15077a84dfa5b561c
Contents?: true
Size: 755 Bytes
Versions: 14
Compression:
Stored size: 755 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class CurrencyDollarCanadian < Base def filled raise NotImplementedError end def outline svg( **attrs, 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: 'M21 6h-4a3 3 0 0 0 0 6h1a3 3 0 0 1 0 6h-4') s.path(d: 'M10 18h-1a6 6 0 1 1 0 -12h1') s.path(d: 'M17 20v-2') s.path(d: 'M18 6v-2') end end end end end end
Version data entries
14 entries across 14 versions & 2 rubygems