chore: fixed lint issues

This commit is contained in:
Anusree Subash 2022-10-16 17:57:25 +05:30
parent 890c79b013
commit 6ee0a3e1e8

View File

@ -5,33 +5,33 @@ import StyledWrapper from "./StyledWrapper";
const BrunoSupport = ({onClose}) => { const BrunoSupport = ({onClose}) => {
return ( return (
<StyledWrapper> <StyledWrapper>
<Modal <Modal
size="sm" size="sm"
title={"Support"} title={"Support"}
handleCancel={onClose} handleCancel={onClose}
hideFooter={true} hideFooter={true}
> >
<div className="collection-options"> <div className="collection-options">
<div className="mt-2"> <div className="mt-2">
<a href="https://github.com/usebruno/bruno/issues" target="_blank" className="flex items-center"> <a href="https://github.com/usebruno/bruno/issues" target="_blank" className="flex items-center">
<IconSpeakerphone size={18} strokeWidth={2}/><span className="label ml-2">Report Issues</span> <IconSpeakerphone size={18} strokeWidth={2}/><span className="label ml-2">Report Issues</span>
</a> </a>
</div>
<div className="mt-2">
<a href="https://github.com/usebruno/bruno" target="_blank" className="flex items-center">
<img src="/github.svg" style={{width: "18px"}}/>
<span className="label ml-2">Github</span>
</a>
</div>
<div className="mt-2">
<a href="https://twitter.com/use_bruno" target="_blank" className="flex items-center">
<IconBrandTwitter size={18} strokeWidth={2}/><span className="label ml-2">Twitter</span>
</a>
</div>
</div> </div>
</Modal> <div className="mt-2">
</StyledWrapper> <a href="https://github.com/usebruno/bruno" target="_blank" className="flex items-center">
<img src="/github.svg" style={{width: "18px"}}/>
<span className="label ml-2">Github</span>
</a>
</div>
<div className="mt-2">
<a href="https://twitter.com/use_bruno" target="_blank" className="flex items-center">
<IconBrandTwitter size={18} strokeWidth={2}/><span className="label ml-2">Twitter</span>
</a>
</div>
</div>
</Modal>
</StyledWrapper>
); );
} }