mirror of
https://github.com/movie-web/movie-web.git
synced 2024-11-16 00:25:07 +01:00
60e6b4d851
Co-authored-by: James Hawkins <jhawki2005@gmail.com> Co-authored-by: William Oldham <wegg7250@gmail.com>
12 lines
343 B
TypeScript
12 lines
343 B
TypeScript
import { Icon, Icons } from 'components/Icon'
|
|
|
|
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>
|
|
)
|
|
}
|