huridocs/uwazi

View on GitHub
app/react/Settings/components/SettingsLabel.tsx

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
import React from 'react';

export interface SettingsLabelProps {
  children: React.ReactNode;
  className?: string;
}

export const SettingsLabel = ({ children, className }: SettingsLabelProps) => (
  <label className={`inline-form-label ${className}`}>{children}</label>
);