Sha256: a8eb428b2ff65a98ee3cd175f48b1fc1864c1bde94db0f834ea555b5ce3e99e6
Contents?: true
Size: 463 Bytes
Versions: 15
Compression:
Stored size: 463 Bytes
Contents
# frozen_string_literal: true module Blacklight module Icons # Icon for Info class InfoComponent < Spotlight::IconComponent self.svg = <<~SVG <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"> <path fill="none" d="M0 0h24v24H0V0z"/> <path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1 15h-2v-6h2v6zm0-8h-2V7h2v2z"/> </svg> SVG end end end
Version data entries
15 entries across 15 versions & 1 rubygems