summaryrefslogtreecommitdiff
path: root/source/github-helpers/create-dropdown-item.tsx
blob: 3b18de94b55114f6eadb2407862aa65e2e4e8616 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
import React from 'dom-chef';

export default function createDropdownItem(label: string, url: string, attributes?: Record<string, string>): Element {
	return (
		<li {...attributes}>
			<a role="menuitem" className="dropdown-item" data-rgh-label={label} href={url}>
				{label}
			</a>
		</li>
	);
}