11 lines
509 B
TypeScript
11 lines
509 B
TypeScript
// find all feather icons at https://feathericons.com/
|
|
// github https://github.com/feathericons/feather
|
|
export * from "react-icons/fi";
|
|
|
|
// if feather icon is missing, use "@heroicons/react/outline";
|
|
export { CollectionIcon } from "@heroicons/react/outline";
|
|
export { ShieldCheckIcon } from "@heroicons/react/outline";
|
|
export { BadgeCheckIcon } from "@heroicons/react/outline";
|
|
export { ClipboardCopyIcon } from "@heroicons/react/outline";
|
|
export { StarIcon as StarIconSolid } from "@heroicons/react/solid";
|