Sha256: 6c0965631adfdaaf9ad81afec2186603911c3deef2482eb385171a4f64b6f7f6
Contents?: true
Size: 498 Bytes
Versions: 20
Compression:
Stored size: 498 Bytes
Contents
# frozen_string_literal: true module Blacklight module Icons # Icon for CheckCircle class CheckCircleComponent < 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 2zm-2 15l-5-5 1.41-1.41L10 14.17l7.59-7.59L19 8l-9 9z"/> </svg> SVG end end end
Version data entries
20 entries across 20 versions & 1 rubygems