mirror of
https://github.com/nextui-org/nextui.git
synced 2025-12-08 19:26:11 +00:00
* fix: replacing the light mode bg and adding bg to nextui-pro section on mobile * fix: making the transitions smoother * chore: removing the bg on mobile devices * fix: pro section and improvements --------- Co-authored-by: Junior Garcia <jrgarciadev@gmail.com>
15 lines
296 B
TypeScript
15 lines
296 B
TypeScript
import {Chip} from "@nextui-org/react";
|
|
|
|
export const NextUIProChip = () => (
|
|
<Chip
|
|
classNames={{
|
|
base: "ml-0.5 transition-colors bg-gradient-to-br from-cyan-600 to-blue-600",
|
|
content: "text-tiny font-semibold",
|
|
}}
|
|
color="primary"
|
|
size="sm"
|
|
>
|
|
PRO
|
|
</Chip>
|
|
);
|