* feat ui: dashboards redesign start * more cards * fix ui: more different cards... * feat ui: finish cards, all trigger, all icons * change(ui): added missin const * feature(ui): new dashboard modal * feature(ui): new dashboard modal * change(ui): new cards * change(ui): dashboard redesign * change(ui): dashboard redesign * change(ui): dashboard redesign * change(ui): modal context and alert form * change(ui): table card show more with modal * change(ui): examples * change(ui): example categorize and other improvements * change(ui): example categorize and other improvements * change(ui): performance cards * change(ui): insights card * Various style updates in dashboards and other pages. (#2308) * Various minor style updates * Various style improvements * Update ExampleCards.tsx * change(ui): fixed an issue with card create * change(ui): fixed an issue with card create * change(ui): default filters and events order * change(ui): random data * Dashboards redesign - improvments (#2313) * Various minor style updates * Various style improvements * Update ExampleCards.tsx * various minor improvements in dashbaords. * revised dashboard widget header * change(ui): sessions by user * change(ui): funnel example * change(ui): modal height and scroll * change(ui): example cards with data * change(ui): example cards with data * change(ui): funnel bar text color * change(ui): example cards overlay click * change(ui): path analysis filter card --------- Co-authored-by: Shekar Siri <sshekarsiri@gmail.com> Co-authored-by: Sudheer Salavadi <connect.uxmaster@gmail.com>
19 lines
1.1 KiB
TypeScript
19 lines
1.1 KiB
TypeScript
|
|
/* Auto-generated, do not edit */
|
|
import React from 'react';
|
|
|
|
interface Props {
|
|
size?: number | string;
|
|
width?: number | string;
|
|
height?: number | string;
|
|
fill?: string;
|
|
}
|
|
|
|
function Integrations_apple(props: Props) {
|
|
const { size = 14, width = size, height = size, fill = '' } = props;
|
|
return (
|
|
<svg viewBox="0 0 24 24" fill="none" width={ `${ width }px` } height={ `${ height }px` } fill={ `${ fill }` }><path d="M22.5 12c0 5.796-4.699 10.5-10.5 10.5S1.5 17.796 1.5 12C1.5 6.199 6.199 1.5 12 1.5S22.5 6.199 22.5 12Z" fill="#283544"/><path d="M16.922 9.343c-.058.033-1.422.739-1.422 2.303.065 1.784 1.722 2.41 1.75 2.41-.028.033-.25.851-.907 1.71-.521.739-1.1 1.484-1.978 1.484-.836 0-1.136-.493-2.1-.493-1.036 0-1.329.493-2.122.493-.878 0-1.5-.785-2.05-1.518-.714-.958-1.32-2.462-1.342-3.906-.015-.766.143-1.518.543-2.157a3.267 3.267 0 0 1 2.67-1.518c.843-.026 1.593.54 2.108.54.493 0 1.414-.54 2.457-.54.45 0 1.65.127 2.393 1.192ZM12 7.999c-.15-.7.264-1.398.65-1.844.492-.54 1.27-.905 1.942-.905a2.501 2.501 0 0 1-.714 1.884c-.436.539-1.186.945-1.878.865Z" fill="#fff"/></svg>
|
|
);
|
|
}
|
|
|
|
export default Integrations_apple;
|