Sha256: 87dc3ab09b39c7455747c49961e7cc5769d9d0c2b8dc8e296c22b21a8a9bd80c
Contents?: true
Size: 1.12 KB
Versions: 18
Compression:
Stored size: 1.12 KB
Contents
# frozen_string_literal: true # rubocop:disable Layout/LineLength module Phlex module Icons module Tabler class CameraBitcoin < 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: 'M12 20h-7a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v1' ) s.path(d: 'M14.477 11.307a3 3 0 1 0 -2.477 4.693') s.path(d: 'M17 21v-6') s.path(d: 'M19 15v-1.5') s.path(d: 'M19 22.5v-1.5') s.path(d: 'M17 18h3') s.path(d: 'M19 18h.5a1.5 1.5 0 0 1 0 3h-3.5') s.path(d: 'M19 18h.5a1.5 1.5 0 0 0 0 -3h-3.5') end end end end end end # rubocop:enable Layout/LineLength
Version data entries
18 entries across 18 versions & 2 rubygems