svelte-5-ui-lib
Version:
Svelte 5 UI Lib is a UI library built from scratch to leverage Svelte 5's runes system, creating smooth, reactive components.
13 lines (12 loc) • 871 B
TypeScript
import type { AdvancedRatingProps, RatingProps, RatingCommentProps, ReviewProps, ScoreRatingProps, RatingIconProps } from './type';
import AdvancedRating from './AdvancedRating.svelte';
import Heart from './Heart.svelte';
import Rating from './Rating.svelte';
import RatingComment from './RatingComment.svelte';
import Review from './Review.svelte';
import ScoreRating from './ScoreRating.svelte';
import Star from './Star.svelte';
import Thumbup from './Thumbup.svelte';
import CustomIcon from './CustomIcon.svelte';
import { advancedrating, rating, review, scorerating } from './theme';
export { AdvancedRating, advancedrating, Heart, Rating, rating, RatingComment, Review, review, ScoreRating, scorerating, Star, Thumbup, CustomIcon, type AdvancedRatingProps, type RatingProps, type RatingCommentProps, type ReviewProps, type ScoreRatingProps, type RatingIconProps };