Sha256: bcdbb91e82a54010d49b89e951120cf6075ccacf7f893a99896f3a8eb13d3b25
Contents?: true
Size: 886 Bytes
Versions: 12
Compression:
Stored size: 886 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class BrandTwilio < 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: 'M21 12a9 9 0 1 1 -18 0a9 9 0 0 1 18 0z') s.path(d: 'M9 9m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0') s.path(d: 'M15 9m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0') s.path(d: 'M15 15m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0') s.path(d: 'M9 15m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0') end end end end end end
Version data entries
12 entries across 12 versions & 2 rubygems