movie-web/src/components/layout/BrandPill.tsx

12 lines
377 B
TypeScript
Raw Normal View History

2022-02-25 21:50:43 +01:00
import { Icon, Icons } from 'components/Icon'
import { ReactNode } from 'react'
export function BrandPill() {
return (
<div className="bg-bink-100 bg-opacity-50 text-bink-600 rounded-full flex items-center space-x-2 px-4 py-2">
<Icon className="text-xl" icon={Icons.MOVIE_WEB} />
<span className="font-semibold text-white">Movie Web</span>
</div>
)
}