aboutsummaryrefslogtreecommitdiff
path: root/src/theme/Admonition/Icon/Warning.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/Warning.js
parentcc128057af3c0805f0c5d26e6a915690d37e2187 (diff)
initial commit
Diffstat (limited to 'src/theme/Admonition/Icon/Warning.js')
-rw-r--r--src/theme/Admonition/Icon/Warning.js11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/theme/Admonition/Icon/Warning.js b/src/theme/Admonition/Icon/Warning.js
new file mode 100644
index 00000000..3cea92d8
--- /dev/null
+++ b/src/theme/Admonition/Icon/Warning.js
@@ -0,0 +1,11 @@
+import React from 'react';
+export default function AdmonitionIconCaution(props) {
+ return (
+ <svg viewBox="0 0 16 16" {...props}>
+ <path
+ fillRule="evenodd"
+ d="M8.893 1.5c-.183-.31-.52-.5-.887-.5s-.703.19-.886.5L.138 13.499a.98.98 0 0 0 0 1.001c.193.31.53.501.886.501h13.964c.367 0 .704-.19.877-.5a1.03 1.03 0 0 0 .01-1.002L8.893 1.5zm.133 11.497H6.987v-2.003h2.039v2.003zm0-3.004H6.987V5.987h2.039v4.006z"
+ />
+ </svg>
+ );
+}