Install & Usage
npm install svelte-circle -D
pnpm add svelte-circle -D
```svelte
<script>
import { Circle } from 'svelte-circle'
</script>
<Circle percent={10} />
Props With Svelte 5
size?: number;
percent?: number;
lineWidth?: number;
bgColor?: string;
color?: string;
textColor?: string;
responsive?: boolean;
rounded?: boolean;
animation?: boolean;
textStyle?: string;
Props With Svelte legacy
width?: number;
percent?: number;
lineWidth?: number;
bgColor?: string;
color?: string;
textColor?: string;
responsive?: boolean;
rounded?: boolean;
animation?: boolean;
textStyle?: string;