mirror of
https://github.com/ToolJet/ToolJet
synced 2026-05-06 06:48:21 +00:00
10 lines
213 B
React
10 lines
213 B
React
|
|
import React from 'react';
|
||
|
|
|
||
|
|
export default function FxButton({ active, onPress }) {
|
||
|
|
return (
|
||
|
|
<div className={`fx-button ${active ? 'active' : ''} unselectable`} onClick={onPress}>
|
||
|
|
Fx
|
||
|
|
</div>
|
||
|
|
);
|
||
|
|
}
|