summaryrefslogtreecommitdiff
path: root/src/components/FormLabel.tsx
blob: 951bb6185d388e460067955cd8aea755b1e97dd7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import { ComponentChildren } from 'preact';
import './FormLabel.css';

export interface FormLabelProps {
	children: ComponentChildren;
}

const FormLabel = ({ children }: FormLabelProps) => {
	return (
		<label class="__FormLabel">
			{children}
		</label>
	);
};

export default FormLabel;