fix(global): add scroll-to-top
This commit is contained in:
@@ -342,6 +342,22 @@ const MobilePhone = (props: SVGProps<SVGSVGElement>) => (
|
||||
</svg>
|
||||
);
|
||||
|
||||
//fluent:chevron-up-12-filled
|
||||
const Chevron = (props: SVGProps<SVGSVGElement>) => (
|
||||
<svg
|
||||
xmlns='http://www.w3.org/2000/svg'
|
||||
width={96}
|
||||
height={96}
|
||||
viewBox='0 0 12 12'
|
||||
{...props}
|
||||
>
|
||||
<path
|
||||
fill='currentColor'
|
||||
d='M2.22 7.53a.75.75 0 0 0 1.06 0L6 4.81l2.72 2.72a.75.75 0 0 0 1.06-1.06L6.53 3.22a.75.75 0 0 0-1.06 0L2.22 6.47a.75.75 0 0 0 0 1.06'
|
||||
/>
|
||||
</svg>
|
||||
);
|
||||
|
||||
export {
|
||||
Map,
|
||||
Envelope,
|
||||
@@ -362,4 +378,5 @@ export {
|
||||
MapOutline,
|
||||
MobileContact,
|
||||
MobilePhone,
|
||||
Chevron,
|
||||
};
|
||||
|
||||
@@ -22,6 +22,7 @@ import {
|
||||
MapOutline,
|
||||
MobileContact,
|
||||
MobilePhone,
|
||||
Chevron,
|
||||
} from './base';
|
||||
|
||||
import {
|
||||
@@ -73,6 +74,7 @@ const Icons = Object.assign(
|
||||
MapOutline,
|
||||
MobileContact,
|
||||
MobilePhone,
|
||||
Chevron,
|
||||
},
|
||||
{
|
||||
GridBook,
|
||||
|
||||
Reference in New Issue
Block a user