import React from 'react'; import {Check, SIZE, COLOR} from '@propellerads/icon'; import {StyledSuccessLabel, StyledIcon, StyledMessage} from './style'; import {SuccessLabelProps} from './types'; const SuccessLabel = ({show = true, children, elementId = ''}: SuccessLabelProps) => ( {children} ); export default SuccessLabel;