diff --git a/src/components/dashboard/elements/ButtonElement.tsx b/src/components/dashboard/elements/ButtonElement.tsx new file mode 100644 index 0000000000..a872166b0a --- /dev/null +++ b/src/components/dashboard/elements/ButtonElement.tsx @@ -0,0 +1,41 @@ +import React, { FunctionComponent } from 'react'; +import globalize from '../../../scripts/globalize'; + +const createButtonElement = ({ type, id, className, title, leftIcon, rightIcon }: IProps) => ({ + __html: `` +}); + +type IProps = { + type?: string; + id?: string; + className?: string; + title?: string; + leftIcon?: string; + rightIcon?: string; +} + +const ButtonElement: FunctionComponent = ({ type, id, className, title, leftIcon, rightIcon }: IProps) => { + return ( +