mirror of
https://github.com/penpot/penpot.git
synced 2025-08-04 10:38:31 +02:00
31 lines
1.1 KiB
Clojure
31 lines
1.1 KiB
Clojure
;; This work is licensed under CC BY 4.0.
|
|
;; The original source can be found here:
|
|
;; https://github.com/google/material-design-icons
|
|
|
|
(ns uxbox.builtins.library.icons.material.alerts
|
|
(:require [sablono.core :refer-macros [html]]
|
|
[uxbox.util.uuid :as uuid]))
|
|
|
|
(def +collection-icons-id+
|
|
(uuid/random))
|
|
|
|
(def +icons+
|
|
[{:name "Error"
|
|
:id (uuid/random)
|
|
:collection +collection-icons-id+
|
|
:metadata {:width 48
|
|
:height 48
|
|
:view-box [0 0 48 48]}
|
|
:content [:path {:xmlns "http://www.w3.org/2000/svg"
|
|
:d "M24 4c-11.04 0-20 8.95-20 20s8.96 20 20 20 20-8.95 20-20-8.96-20-20-20zm2 30h-4v-4h4v4zm0-8h-4v-12h4v12z"
|
|
:style {:stroke nil}}]}
|
|
{:name "Warning"
|
|
:id (uuid/random)
|
|
:collection +collection-icons-id+
|
|
:metadata {:width 48
|
|
:height 48
|
|
:view-box [0 0 48 48]}
|
|
:content [:path {:xmlns "http://www.w3.org/2000/svg"
|
|
:d "M2 42h44l-22-38-22 38zm24-6h-4v-4h4v4zm0-8h-4v-8h4v8z"
|
|
:style {:stroke nil}}]}
|
|
])
|