aboutsummaryrefslogtreecommitdiff
path: root/src/theme/Admonition/Icon/Danger.js
diff options
context:
space:
mode:
author安竹洋平 <61961825+yasutakeyohei@users.noreply.github.com>2024-01-27 01:22:54 +0900
committer安竹洋平 <61961825+yasutakeyohei@users.noreply.github.com>2024-01-27 01:22:54 +0900
commit65350c0839bf5cbbdd128d645018a0f5f07ac14f (patch)
tree11fbb7ef222526e9e3095ba3bc8652061eb5b168 /src/theme/Admonition/Icon/Danger.js
parentcc128057af3c0805f0c5d26e6a915690d37e2187 (diff)
initial commit
Diffstat (limited to 'src/theme/Admonition/Icon/Danger.js')
-rw-r--r--src/theme/Admonition/Icon/Danger.js11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/theme/Admonition/Icon/Danger.js b/src/theme/Admonition/Icon/Danger.js
new file mode 100644
index 00000000..3ae0f005
--- /dev/null
+++ b/src/theme/Admonition/Icon/Danger.js
@@ -0,0 +1,11 @@
+import React from 'react';
+export default function AdmonitionIconDanger(props) {
+ return (
+ <svg viewBox="0 0 12 16" {...props}>
+ <path
+ fillRule="evenodd"
+ d="M5.05.31c.81 2.17.41 3.38-.52 4.31C3.55 5.67 1.98 6.45.9 7.98c-1.45 2.05-1.7 6.53 3.53 7.7-2.2-1.16-2.67-4.52-.3-6.61-.61 2.03.53 3.33 1.94 2.86 1.39-.47 2.3.53 2.27 1.67-.02.78-.31 1.44-1.13 1.81 3.42-.59 4.78-3.42 4.78-5.56 0-2.84-2.53-3.22-1.25-5.61-1.52.13-2.03 1.13-1.89 2.75.09 1.08-1.02 1.8-1.86 1.33-.67-.41-.66-1.19-.06-1.78C8.18 5.31 8.68 2.45 5.05.32L5.03.3l.02.01z"
+ />
+ </svg>
+ );
+}