Fix typo in the Marquee component (#176)

Co-authored-by: Hugo Lopes <hugo.lopes@present-technologies.com>
This commit is contained in:
Hugo Lopes 2021-01-25 22:26:07 +00:00 committed by GitHub
parent 742ac5786e
commit 5d8f3375e8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -9,7 +9,7 @@ interface Props {
variant?: 'primary' | 'secondary'
}
const Maquee: FC<Props> = ({
const Marquee: FC<Props> = ({
className = '',
children,
variant = 'primary',
@ -32,4 +32,4 @@ const Maquee: FC<Props> = ({
)
}
export default Maquee
export default Marquee