aboutsummaryrefslogtreecommitdiff
path: root/apps/extension/content/ui/components/command/GroupLabel.tsx
blob: df7f9a4dc8c22abcf10a6f616624828c40d8cf36 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import React from "react";

const GroupLabel = React.forwardRef<
	HTMLParagraphElement,
	React.ComponentPropsWithoutRef<"p">
>(({ className, ...props }, ref) => (
	<p
		ref={ref}
		className="text-xs font-medium text-label px-2 pb-3"
		{...props}
	/>
));

GroupLabel.displayName = "GroupLabel";

export { GroupLabel };