import { Button, Icon } from '@rocket.chat/fuselage'; import React from 'react'; import styled from 'styled-components'; import { useTranslation } from '../../providers/TranslationProvider'; // TODO: get rid of it const StyledResetSettingButton = styled(Button)` padding-block: 0 !important; padding-top: 0 !important; padding-bottom: 0 !important; `; export function ResetSettingButton(props) { const t = useTranslation(); return ; }