mirror of
https://github.com/penpot/penpot.git
synced 2025-02-02 20:39:09 -05:00
18 lines
651 B
Clojure
18 lines
651 B
Clojure
(ns uxbox.library.icons.material-design-alerts)
|
|
|
|
(def +icons+
|
|
[{:name "Error"
|
|
:id (gensym "icon")
|
|
:type :builtin/icon
|
|
:view-box [0 0 48 48]
|
|
:data [: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 (gensym "icon")
|
|
:type :builtin/icon
|
|
:view-box [0 0 48 48]
|
|
:data [:path {:xmlns "http://www.w3.org/2000/svg"
|
|
:d "M2 42h44l-22-38-22 38zm24-6h-4v-4h4v4zm0-8h-4v-8h4v8z"
|
|
:style {:stroke nil}}]}
|
|
])
|