UNPKG

flowbite-svelte

Version:

Flowbite components for Svelte

16 lines (15 loc) 498 B
import type { RatingCommentProps } from "../types"; /** * [Go to docs](https://flowbite-svelte.com/) * ## Type * [RatingCommentProps](https://github.com/themesberg/flowbite-svelte/blob/main/src/lib/types.ts#L1261) * ## Props * @prop children * @prop evaluation * @prop helpfullink * @prop abuselink * @prop comment */ declare const RatingComment: import("svelte").Component<RatingCommentProps, {}, "">; type RatingComment = ReturnType<typeof RatingComment>; export default RatingComment;