Sha256: 051fff6368ca5b627b6f1628c39904779f095e9c6c606764a249522066b62a0f
Contents?: true
Size: 1.07 KB
Versions: 12
Compression:
Stored size: 1.07 KB
Contents
# frozen_string_literal: true # rubocop:disable Metrics/MethodLength module Phlex module Icons module Tabler class Spray < 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: 'M4 10m0 2a2 2 0 0 1 2 -2h4a2 2 0 0 1 2 2v7a2 2 0 0 1 -2 2h-4a2 2 0 0 1 -2 -2z' ) s.path(d: 'M6 10v-4a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v4') s.path(d: 'M15 7h.01') s.path(d: 'M18 9h.01') s.path(d: 'M18 5h.01') s.path(d: 'M21 3h.01') s.path(d: 'M21 7h.01') s.path(d: 'M21 11h.01') s.path(d: 'M10 7h1') end end end end end end # rubocop:enable Metrics/MethodLength
Version data entries
12 entries across 12 versions & 2 rubygems