update
This commit is contained in:
15
packages/user-login/src/modules/beian/beian.tsx
Normal file
15
packages/user-login/src/modules/beian/beian.tsx
Normal file
@@ -0,0 +1,15 @@
|
||||
import clsx from 'clsx';
|
||||
import './beian.css';
|
||||
type Props = {
|
||||
className?: string;
|
||||
text?: string;
|
||||
};
|
||||
export const Beian = (props: Props) => {
|
||||
return (
|
||||
<div className={clsx('beian text-sm w-full flex justify-center text-[#e69c36]', props.className)}>
|
||||
<a href='//beian.miit.gov.cn' target='_blank'>
|
||||
{props.text}
|
||||
</a>
|
||||
</div>
|
||||
);
|
||||
};
|
||||
Reference in New Issue
Block a user