You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
447 B
TypeScript
19 lines
447 B
TypeScript
import React from 'react';
|
|
|
|
interface ReceivedProps {
|
|
text: string;
|
|
}
|
|
|
|
// Needed because of https://github.com/microsoft/tslint-microsoft-contrib/issues/339
|
|
type Props = ReceivedProps;
|
|
|
|
export const PillDivider: React.SFC<Props> = props => {
|
|
return (
|
|
<div className="panel-text-divider">
|
|
<div className="panel-text-divider-line" />
|
|
<span>{props.text}</span>
|
|
<div className="panel-text-divider-line" />
|
|
</div>
|
|
);
|
|
};
|