Sha256: 1574fa6a5ec2de46fb16fd2facc83d4af7e4886f874ad35948b315f39e15d4d2
Contents?: true
Size: 415 Bytes
Versions: 15
Compression:
Stored size: 415 Bytes
Contents
# frozen_string_literal: true module Blacklight module Icons # Icon for Error class ErrorComponent < Spotlight::IconComponent self.svg = <<~SVG <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"> <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-2h2v2zm0-4h-2V7h2v6z"/> </svg> SVG end end end
Version data entries
15 entries across 15 versions & 1 rubygems