mirror of
https://github.com/sqlchat/sqlchat.git
synced 2025-07-28 17:53:21 +08:00
12 lines
252 B
TypeScript
12 lines
252 B
TypeScript
import * as Hi from "react-icons/hi";
|
|
import * as Io from "react-icons/io";
|
|
|
|
const Icon = {
|
|
Hi,
|
|
Io,
|
|
};
|
|
|
|
// Icon is a collection of all icons from react-icons.
|
|
// See https://react-icons.github.io/react-icons/ for more details.
|
|
export default Icon;
|