import { EnvelopeIcon } from "@heroicons/react/20/solid"; import { useState } from "react"; import { AnimatedCallout } from "~/components/primitives/AnimatedCallout"; import { Button } from "~/components/primitives/Buttons"; import { Callout } from "~/components/primitives/Callout"; import { Header2 } from "~/components/primitives/Headers"; export default function Story() { const [showAnimatedCallout, setShowAnimatedCallout] = useState(true); return (
Animated callout This callout fades in and out Callouts This is an info callout This is a warning callout This is an error callout This is an idea callout This is a success callout This is a docs callout }> This callout has a custom icon This is a pending callout This is a pricing callout This is an error message which runs over multiple lines. This is an error message which runs over multiple lines. This is an error message which runs over multiple lines.
Callouts with a link This is an info callout This is a warning callout This is an error callout This is an idea callout This is a docs callout }> This callout has a custom icon This is a pending callout This is a pricing callout This uses an http link This is an error message which runs over multiple lines. This is an error message which runs over multiple lines. This is an error message which runs over multiple lines.
); }