mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-17 05:10:31 +00:00
feat: apply new cards design system.
feat: empty status datatables. fix: edit account.
This commit is contained in:
@@ -2,11 +2,15 @@ import React from 'react';
|
||||
import { Tooltip, Position } from '@blueprintjs/core';
|
||||
import Icon from './Icon';
|
||||
|
||||
export default function FieldHint({ content, position }) {
|
||||
export default function FieldHint({
|
||||
content,
|
||||
position,
|
||||
iconSize = 12
|
||||
}) {
|
||||
return (
|
||||
<span class="hint">
|
||||
<Tooltip content={content} position={position}>
|
||||
<Icon icon="info-circle" iconSize={12} />
|
||||
<Icon icon="info-circle" iconSize={iconSize} />
|
||||
</Tooltip>
|
||||
</span>
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user