1
0
mirror of synced 2025-12-21 19:06:49 -05:00
Files
docs/components/ScrollButton.tsx
2021-05-05 15:58:21 -07:00

10 lines
215 B
TypeScript

import { ChevronUpIcon } from '@primer/octicons-react'
export const ScrollButton = () => {
return (
<button className="arrow-for-scrolling-top" id="js-scroll-top">
<ChevronUpIcon />
</button>
)
}