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