huridocs/uwazi

View on GitHub
app/react/Metadata/components/Pill.tsx

Summary

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

interface PillProps {
  children: React.ReactNode;
  color: string;
}

export const Pill = (props: PillProps) => (
  <span className="pill" style={{ backgroundColor: props.color }}>
    {props.children}
  </span>
);