mirror of
https://github.com/Radiquum/AniX.git
synced 2025-04-06 00:04:39 +00:00
11 lines
330 B
JavaScript
11 lines
330 B
JavaScript
export const Chip = (props) => {
|
|
return (
|
|
<div className={`rounded-sm ${props.bg_color || "bg-gray-500"}`}>
|
|
<p className="px-2 sm:px-4 py-0.5 sm:py-1 text-xs xl:text-base text-white">
|
|
{props.name}
|
|
{props.name && props.devider ? props.devider : " "}
|
|
{props.name_2}
|
|
</p>
|
|
</div>
|
|
);
|
|
};
|