import { Info } from "@phosphor-icons/react/dist/ssr/Info"; import { Lightbulb } from "@phosphor-icons/react/dist/ssr/Lightbulb"; import { Alert, AlertTrigger } from "@pythnetwork/component-library/Alert"; import { Button } from "@pythnetwork/component-library/Button"; import type { ComponentProps, ReactNode } from "react"; import styles from "./index.module.scss"; type Props = { size: ComponentProps["size"]; title: string; children: ReactNode; }; export const Explain = ({ size, title, children }: Props) => ( } bodyClassName={styles.description} > {children} );