Skip to content

Commit

Permalink
chore: removed unused classnames
Browse files Browse the repository at this point in the history
  • Loading branch information
aum-deriv committed May 4, 2023
1 parent 16c386a commit b7208e4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/cashier/src/components/alert-banner/alert-banner.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ type TAlertBanner = {
const AlertBanner = ({ className, icon, message }: TAlertBanner) => {
return (
<div className={classNames('alert-banner', className)}>
<Icon size={16} icon={icon} className='alert-banner__icon' />
<Text as='p' align='center' size='xs' className='alert-banner__text'>
<Icon size={16} icon={icon} />
<Text as='p' align='center' size='xs'>
{message}
</Text>
</div>
Expand Down

0 comments on commit b7208e4

Please sign in to comment.