0.0.4 • Published 5 months ago

searchbarforlittledata v0.0.4

Weekly downloads
-
License
-
Repository
-
Last release
5 months ago

Search Bar For Little Data

Document

This librady for me

Declare props

interface DataSearchProps {
  iconArticle?: string,
  articleTitle: string,
  href: string,
}
interface SearchBarProps {
  searchBarStyles?: CSSProperties,
  tooltipStyles?:CSSProperties,
  tooltipContentStyles?: CSSProperties,
  inputSearchStyles?:CSSProperties,
  searchIconStyles?:CSSProperties,

  dataSearch: DataSearchProps[];
  inputPlaceholder?: string;
}
interface SearchResultProps{
  articleTitle:string,
  href: string
}