Files
bruno/packages/bruno-app/src/components/StatusDot/index.js
2025-12-04 01:37:20 +05:30

15 lines
303 B
JavaScript

import React from 'react';
import DotIcon from 'components/Icons/Dot';
const StatusDot = ({ type = 'default' }) => (
<sup
className={`ml-[.125rem] opacity-80 font-medium ${
type === 'error' ? 'text-red-500' : ''
}`}
>
<DotIcon width="10" />
</sup>
);
export default StatusDot;