0.1.4 • Published 3 years ago
tauicons v0.1.4
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 tauiconsUsage
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} />