Sha256: 9e3890ed82c701f53210c7839ed7bbe5fd911aae91e65edd089ae5d88f39d584
Contents?: true
Size: 818 Bytes
Versions: 14
Compression:
Stored size: 818 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class BrandPlanetscale < 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: 'M20.993 11.63a9 9 0 0 1 -9.362 9.362l9.362 -9.362z') s.path( d: 'M12 3a9.001 9.001 0 0 1 8.166 5.211l-11.955 11.955a9 9 0 0 1 3.789 -17.166z' ) s.path(d: 'M12 12l-6 6') end end end end end end
Version data entries
14 entries across 14 versions & 2 rubygems