UNPKG

@mattilsynet/designsystem-svelte

Version:

Design system for Mattilsynet

18 lines (17 loc) 464 B
interface Props { searchString?: string; name: string; shouldFocus?: boolean; label?: string; labelClass?: string; helpText?: string; searchButtonText?: string; placeholder?: string; ariaControls?: string; ariaRemoveTextLabel?: string; inputClass?: string; class?: string; } declare const Search: import("svelte").Component<Props, {}, "searchString">; type Search = ReturnType<typeof Search>; export default Search;