svelte-bootstrap-svg-icons
Version:
Svelte Bootstrap SVG Icons for Svelte 5
17 lines (16 loc) • 480 B
TypeScript
import type { Props } from './types';
/**
* [Go to docs](https://svelte-bootstrap-svg-icons.codewithshin.com/)
* ## Props
* @prop size = ctx.size || '24'
* @prop role = ctx.role || 'img'
* @prop color = ctx.color || 'currentColor'
* @prop title
* @prop desc
* @prop focusable = 'false'
* @prop ariaLabel
* @prop ...restProps
*/
declare const PhoneFill: import("svelte").Component<Props, {}, "">;
type PhoneFill = ReturnType<typeof PhoneFill>;
export default PhoneFill;