generated from TBD54566975/tbd-project-template
-
Notifications
You must be signed in to change notification settings - Fork 106
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Replace admonition components (#1840)
- Loading branch information
1 parent
12b8749
commit 2e85615
Showing
3 changed files
with
12 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
export { default as Admonition } from "./Admonition"; | ||
export type { Variant } from "./Admonition"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
import React, { type ReactNode } from "react"; | ||
import { Admonition as CustomAdmonition } from "@site/src/components/Admonition"; | ||
import type { Variant } from "@site/src/components/Admonition"; | ||
|
||
import type { Props } from "@theme/Admonition/Layout"; | ||
|
||
export default function AdmonitionLayout(props: Props): JSX.Element { | ||
const { type, children } = props; | ||
return <CustomAdmonition variant={type as Variant} children={children} />; | ||
} |