Highlight
Component use to highlight text. For example, you can use it to highlight search results.
Ceci est un texte
import { Highlight } from "swash/Highlight";
import { IoFlaskOutline } from "swash/Icon";
export const Example = () => {
return (
<Highlight search="un text">
<IoFlaskOutline />
Ceci est un texte
</Highlight>
);
};