9 lines
248 B
JavaScript
9 lines
248 B
JavaScript
|
export const OutlineButton = () => {
|
||
|
<a
|
||
|
href="https://secure.siasky.net"
|
||
|
className="inline-block border-2 border-palette-600 text-palette-600 px-10 leading-10 rounded-full text-xs uppercase text-center mt-7"
|
||
|
>
|
||
|
Learn more
|
||
|
</a>;
|
||
|
};
|