flowbite-svelte-icons
Version:
Flowbite icon components for Svelte 5 Runes
17 lines (16 loc) • 528 B
TypeScript
import type { OutlineProps } from './types';
/**
* [Go to docs](https://flowbite-svelte-icons.codewithshin.com/)
* ## Props
* @prop size = ctx.size || 'md'
* @prop color = ctx.color || 'currentColor'
* @prop title
* @prop strokeWidth = ctx.strokeWidth || 2
* @prop desc
* @prop class: className
* @prop ariaLabel
* @prop ...restProps
*/
declare const ClockArrowOutline: import("svelte").Component<OutlineProps, {}, "">;
type ClockArrowOutline = ReturnType<typeof ClockArrowOutline>;
export default ClockArrowOutline;