upstream #1
@ -31,7 +31,10 @@ type SocialIconProps = {
|
|||||||
}
|
}
|
||||||
|
|
||||||
const SocialIcon = ({ kind, href, size = 8 }: SocialIconProps) => {
|
const SocialIcon = ({ kind, href, size = 8 }: SocialIconProps) => {
|
||||||
if (!href || (kind === 'mail' && !/^mailto:\w+([.-]?\w+)@\w+([.-]?\w+)(.\w{2,3})+$/.test(href)))
|
if (
|
||||||
|
!href ||
|
||||||
|
(kind === 'mail' && !/^mailto:[a-zA-Z0-9._%+-]+@[a-zA-Z0-9.-]+\.[a-zA-Z]{2,}$/.test(href))
|
||||||
|
)
|
||||||
return null
|
return null
|
||||||
|
|
||||||
const SocialSvg = components[kind]
|
const SocialSvg = components[kind]
|
||||||
|
Loading…
x
Reference in New Issue
Block a user