import ExpandableText from "../ExpandableText.js"; import type ListItemBase from "../ListItemBase.js"; import type { ExpandableTextTemplateParams } from "../types/ExpandableTextTemplateParams.js"; /** * Provides a template for rendering text with the ExpandableText component * when wrappingType is set to "Normal". * * @param {object} injectedProps - The configuration options for the expandable text * @returns {JSX.Element} The rendered ExpandableText component */ export default function ListItemStandardExpandableTextTemplate( this: ListItemBase, injectedProps: ExpandableTextTemplateParams ): JSX.Element { const { className, text, maxCharacters, part } = injectedProps; return ( ); }