Services
Make a strong social media marketing strategy with our Instagram growth service. Keep a high engagement rate and deeply connect with the IG audience.
export interface IconProps {
name: string;
size?: number;
width?: number;
height?: number;
className?: string;
animation?: IconAnimation; // "spin"
duration?: number; // in ms
tabIndex?: number;
}
include /components/icon
+icon({ name: "go_16px", size: 16 })
+icon({ name: "video_20px_light", size: 20 })
+icon({ name: "go_24px_regular", size: 24 })
import { Icon } from "@/ui/icon/Icon";
<Icon name="go_16px" size={16} />
<Icon name="video_20px_light" size={20} />
<Icon name="go_24px_regular" size={24} />
<svg class="svg-icon" width="24" height="24" viewBox="0 0 24 24">
<use href="/static/icons/icons.svg#go_24px_regular"></use>
</svg>