react-icons/bs#BsWifi JavaScript Examples
The following examples show how to use
react-icons/bs#BsWifi.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: index.jsx From roomie-frontend with MIT License | 4 votes |
PlaceInfo = ({ price, wifi, bath, cleaning, closet, tv, parking }) => {
return (
<Info>
<p>{`${price} COP / Día`}</p>
{
wifi ? (
<>
<Service>
<Img>
<BsWifi size='25px' />
</Img>
<Name>Wi-Fi</Name>
</Service>
</>
) :
''
}
{
bath ? (
<>
<Service>
<Img>
<FaBath size='25px' />
</Img>
<Name>Private Bathroom</Name>
</Service>
</>
) : ''
}
{
parking ? (
<>
<Service>
<Img>
<FaParking size='25px' />
</Img>
<Name>Parking</Name>
</Service>
</>
) : ''
}
{
tv ? (
<>
<Service>
<Img>
<MdScreenShare size='25px' />
</Img>
<Name>Cable TV</Name>
</Service>
</>
) : ''
}
{
closet ? (
<>
<Service>
<Img>
<Closet size='25px' />
</Img>
<Name>Closet</Name>
</Service>
</>
) : ''
}
{
cleaning ? (
<>
<Service>
<Img>
<Cleaning size='25px' />
</Img>
<Name>Cleaning Service</Name>
</Service>
</>
) : ''
}
</Info>
);
}