UNPKG

flowbite-svelte-icons

Version:
19 lines (18 loc) 532 B
import type { OutlineProps } 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 strokeWidth = ctx.strokeWidth || 2 * @prop desc * @prop class: className * @prop ariaLabel * @prop ...restProps */ declare const FileCodeOutline: import("svelte").Component<OutlineProps, {}, "">; type FileCodeOutline = ReturnType<typeof FileCodeOutline>; export default FileCodeOutline;