import React, { forwardRef } from "react"; import { BodyLong } from "../typography"; import { cl } from "../utils/helpers"; export interface LinkPanelDescriptionProps extends React.HTMLAttributes { children: React.ReactNode; } export const LinkPanelDescription = forwardRef< HTMLDivElement, LinkPanelDescriptionProps >(({ className, ...rest }, ref) => { return ( ); }); export default LinkPanelDescription;