Jon
Jon

Reputation: 313

Semantic UI React : How to Hide Suggested Text from Search Box

I am using Semantic UI React , I want to remove suggested text from search box . I am new to Semantic UI React , I will be very thankful if someone help me to remove suggested Text . Please see an attachment . enter image description here

Code

import { Search } from 'semantic-ui-react';
<Search placeholder={"Search by Name, Email , Phone , Website"} />

Upvotes: 2

Views: 1415

Answers (1)

linkinmedo
linkinmedo

Reputation: 430

<Search placeholder={"Search by Name, Email , Phone , Website"} showNoResults={false} />

This with no source or api should do the trick.

Upvotes: 3

Related Questions