react-code-dataset / tabler-react /src /components /Timeline /TimelineItemDescription.react.js
Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
raw
history blame
335 Bytes
// @flow
import * as React from "react";
type Props = {|
+children?: React.Node,
|};
function TimelineItemDescription({ children }: Props): React.Node {
return <small className="d-block text-muted">{children}</small>;
}
TimelineItemDescription.displayName = "Timeline.ItemDescription";
export default TimelineItemDescription;