Skip to content

Commit

Permalink
new icons
Browse files Browse the repository at this point in the history
  • Loading branch information
deborahniesz committed Jan 29, 2025
1 parent a07aafa commit d8f564f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/docusaurus/docs/core/introduction/try_gx.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ When using the taxi data, you can make certain assumptions. For example:
## Validate data in a DataFrame
This example workflow walks you through connecting to data in a Pandas DataFrame and validating the data using a single Expectation.

:::info Pandas install
:::tip Pandas install
This example requires that [Pandas](https://pandas.pydata.org/) is installed in the same Python environment where you are running GX Core.
:::

Expand Down
3 changes: 2 additions & 1 deletion docs/docusaurus/src/theme/Admonition/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ import React from 'react';
import Admonition from '@theme-original/Admonition';
import AlertInfo from "../../../static/img/alert-info.svg";
import AlertWarning from "../../../static/img/alert-warning.svg";
import CautionIcon from "../../../static/img/admonition-caution-icon.svg"
import AlertBell from "../../../static/img/alert-bell.svg";
import AlertPin from "../../../static/img/alert-pin.svg";
import DangerIcon from "../../../static/img/admonition-danger-icon.svg"
Expand All @@ -17,7 +18,7 @@ export default function AdmonitionWrapper(props) {
case 'tip':
return <Admonition {...props} icon={<AlertInfo/>} />;
case 'caution':
return <Admonition {...props} icon={<AlertInfo/>} />;
return <Admonition {...props} icon={<CautionIcon/>} />;
case 'warning':
return <Admonition {...props} icon={<AlertWarning/>} />;
case 'danger':
Expand Down

0 comments on commit d8f564f

Please sign in to comment.