@dvcol/neo-svelte
Version:
Neomorphic ui library for svelte 5
10 lines (9 loc) • 388 B
TypeScript
import type { Snippet } from 'svelte';
import type { NeoCursorContext } from './neo-cursor.model.js';
import type { HTMLNeoBaseElement } from '../utils/html-element.utils.js';
export type NeoCursorPointerProps = NeoCursorContext & {
/**
* Inner content of the cursor.
*/
children?: Snippet<[NeoCursorContext]>;
} & Omit<HTMLNeoBaseElement<HTMLSpanElement>, 'children'>;