/** * Copyright (c) OpenLens Authors. All rights reserved. * Licensed under MIT License. See LICENSE in root directory for more information. */ import React from "react"; import { ReactiveDuration } from "../duration/reactive-duration"; import { LocaleDate } from "../locale-date"; export interface DurationAbsoluteTimestampProps { timestamp: string | undefined; } export const DurationAbsoluteTimestamp = ({ timestamp }: DurationAbsoluteTimestampProps) => { if (!timestamp) { return <>{""}; } return ( <> {" ago "} ( ) ); };