mirror of
https://github.com/Stirling-Tools/Stirling-PDF.git
synced 2025-08-26 06:09:23 +00:00

- Added optional title for tool workflow - Not added to any tool. Just there for when we need it - Added add files button to files step - renamed Local files button in filemanager to Upload Files - --------- Co-authored-by: Connor Yoh <connor@stirlingpdf.com> Co-authored-by: James Brunton <jbrunton96@gmail.com>
54 lines
1.3 KiB
TypeScript
54 lines
1.3 KiB
TypeScript
import React from 'react';
|
|
import { Flex, Text, Divider } from '@mantine/core';
|
|
import { Tooltip } from '../../shared/Tooltip';
|
|
|
|
export interface ToolWorkflowTitleProps {
|
|
title: string;
|
|
tooltip?: {
|
|
content?: React.ReactNode;
|
|
tips?: any[];
|
|
header?: {
|
|
title: string;
|
|
logo?: React.ReactNode;
|
|
};
|
|
};
|
|
}
|
|
|
|
export function ToolWorkflowTitle({ title, tooltip }: ToolWorkflowTitleProps) {
|
|
if (tooltip) {
|
|
return (
|
|
<>
|
|
<Flex justify="center" w="100%">
|
|
<Tooltip
|
|
content={tooltip.content}
|
|
tips={tooltip.tips}
|
|
header={tooltip.header}
|
|
sidebarTooltip={true}
|
|
>
|
|
<Flex align="center" gap="xs" onClick={(e) => e.stopPropagation()}>
|
|
<Text fw={500} size="xl" p="md">
|
|
{title}
|
|
</Text>
|
|
<span className="material-symbols-rounded" style={{ fontSize: '1.2rem', color: 'var(--icon-files-color)' }}>
|
|
gpp_maybe
|
|
</span>
|
|
</Flex>
|
|
</Tooltip>
|
|
</Flex>
|
|
<Divider />
|
|
</>
|
|
);
|
|
}
|
|
|
|
return (
|
|
<>
|
|
<Flex justify="center" w="100%">
|
|
<Text fw={500} size="xl" p="md">
|
|
{title}
|
|
</Text>
|
|
</Flex>
|
|
<Divider />
|
|
</>
|
|
);
|
|
}
|