mirror of
https://github.com/aykhans/slash-e.git
synced 2025-04-16 12:23:12 +00:00
13 lines
279 B
TypeScript
13 lines
279 B
TypeScript
import classNames from "classnames";
|
|
import Icon from "./Icon";
|
|
|
|
interface Props {
|
|
className?: string;
|
|
}
|
|
|
|
const Logo = ({ className }: Props) => {
|
|
return <Icon.CircleSlash className={classNames("dark:text-gray-500", className)} strokeWidth={1.5} />;
|
|
};
|
|
|
|
export default Logo;
|