tauicons
v0.1.4
Published
essential icons, extended from Vercel's design system.
Downloads
8
Maintainers
Readme
tauicons
What is tauicons?
tauicons
is a package that provides essential icons, extended from
Vercel's design system. Currently
the base tauicons
package provides the icons only as react
components. This may or may not change in the future.
Installation
pnpm i tauicons
Usage
import { VercelTriangle, Smile } from "tauicons";
const App = () => {
return (
<>
<VercelTriangle />
<Smile />
</>
);
};
export default App;
Icons can be configured with inline props:
<VercelTriangle color="#79ffe1" size={48} />