UNPKG

svelte-lucide

Version:

Lucide SVG icon components for Svelte

18 lines (17 loc) 541 B
import type { Props } from './types'; /** * [Go to docs](https://svelte-lucide.codewithshin.com/) * ## Props * @prop size = ctx.size || '24' * @prop role = ctx.role || 'img' * @prop color = ctx.color || 'currentColor' * @prop strokeWidth = ctx.strokeWidth || '2' * @prop title * @prop desc * @prop focusable = 'false' * @prop ariaLabel * @prop ...restProps */ declare const TabletSmartphone: import("svelte").Component<Props, {}, "">; type TabletSmartphone = ReturnType<typeof TabletSmartphone>; export default TabletSmartphone;