lucide-svelte
Version:
A Lucide icon library package for Svelte applications
35 lines (34 loc) • 1.7 kB
TypeScript
/**
* @license lucide-svelte v0.446.0 - ISC
*
* This source code is licensed under the ISC license.
* See the LICENSE file in the root directory of this source tree.
*/
import { SvelteComponentTyped } from "svelte";
import type { IconProps } from '../types.js';
declare const __propDef: {
props: IconProps;
events: {
[evt: string]: CustomEvent<any>;
};
slots: {
default: {};
};
};
export type PictureInPicture_2Props = typeof __propDef.props;
export type PictureInPicture_2Events = typeof __propDef.events;
export type PictureInPicture_2Slots = typeof __propDef.slots;
/**
* @component @name PictureInPicture2
* @description Lucide SVG icon component, renders SVG Element with children.
*
* @preview  - https://lucide.dev/icons/picture-in-picture-2
* @see https://lucide.dev/guide/packages/lucide-svelte - Documentation
*
* @param {Object} props - Lucide icons props and any valid SVG attribute
* @returns {FunctionalComponent} Svelte component
*
*/
export default class PictureInPicture_2 extends SvelteComponentTyped<PictureInPicture_2Props, PictureInPicture_2Events, PictureInPicture_2Slots> {
}
export {};