@alydev/icons
v2.0.1
Published
Tree-shakeable SVG icon components used by Calix. Bring your own or use these.
Readme
@alydev/icons
Tree-shakeable SVG icon components used by Calix.
Bring your own icons or use these — each inherits currentColor and sizes to 1em.
import { ChevronLeftIcon, CalendarIcon } from "@alydev/icons";
<CalendarIcon size={20} aria-hidden />;Create your own with the same conventions:
import { createIcon } from "@alydev/icons";
export const MyIcon = createIcon("MyIcon", <path d="…" />);