From 65350c0839bf5cbbdd128d645018a0f5f07ac14f Mon Sep 17 00:00:00 2001 From: 安竹洋平 <61961825+yasutakeyohei@users.noreply.github.com> Date: Sat, 27 Jan 2024 01:22:54 +0900 Subject: initial commit --- src/theme/Admonition/Icon/Danger.js | 11 +++++++++++ src/theme/Admonition/Icon/Info.js | 11 +++++++++++ src/theme/Admonition/Icon/Note.js | 11 +++++++++++ src/theme/Admonition/Icon/Tip.js | 11 +++++++++++ src/theme/Admonition/Icon/Warning.js | 11 +++++++++++ 5 files changed, 55 insertions(+) create mode 100644 src/theme/Admonition/Icon/Danger.js create mode 100644 src/theme/Admonition/Icon/Info.js create mode 100644 src/theme/Admonition/Icon/Note.js create mode 100644 src/theme/Admonition/Icon/Tip.js create mode 100644 src/theme/Admonition/Icon/Warning.js (limited to 'src/theme/Admonition/Icon') 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 ( + + + + ); +} diff --git a/src/theme/Admonition/Icon/Info.js b/src/theme/Admonition/Icon/Info.js new file mode 100644 index 00000000..6e843d2e --- /dev/null +++ b/src/theme/Admonition/Icon/Info.js @@ -0,0 +1,11 @@ +import React from 'react'; +export default function AdmonitionIconInfo(props) { + return ( + + + + ); +} diff --git a/src/theme/Admonition/Icon/Note.js b/src/theme/Admonition/Icon/Note.js new file mode 100644 index 00000000..e1cc0e4d --- /dev/null +++ b/src/theme/Admonition/Icon/Note.js @@ -0,0 +1,11 @@ +import React from 'react'; +export default function AdmonitionIconNote(props) { + return ( + + + + ); +} diff --git a/src/theme/Admonition/Icon/Tip.js b/src/theme/Admonition/Icon/Tip.js new file mode 100644 index 00000000..060d6c93 --- /dev/null +++ b/src/theme/Admonition/Icon/Tip.js @@ -0,0 +1,11 @@ +import React from 'react'; +export default function AdmonitionIconTip(props) { + return ( + + + + ); +} 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 ( + + + + ); +} -- cgit v1.2.3-54-g00ecf