Skip to content
Snippets Groups Projects
icons.tsx 6.6 KiB
Newer Older
  • Learn to ignore specific revisions
  • import { h, FunctionalComponent } from "@stencil/core";
    
    export const IconArrowLeft: FunctionalComponent = (props: any) => {
      return (
        <svg
          xmlns="http://www.w3.org/2000/svg"
          width={props.width || 30}
          height={props.height || 29}
          viewBox="0 0 30 29"
          fill={props.fill || "black"}
        >
          <polygon
            points="29.207 13.783 14.756 .717 14.055 0 11.402 3.118 10.732 3.835 19.665 11.974 0 11.974 0 17.026 19.756 17.026 11.494 24.447 10.823 25.071 11.402 25.882 13.476 28.189 14.055 29 30 14.594"
            transform="rotate(-180 15 14.5)"
          />
        </svg>
      );
    };
    export const IconArrowRight: FunctionalComponent = (props: any) => {
      return (
        <svg
          xmlns="http://www.w3.org/2000/svg"
          width={props.width || 30}
          height={props.height || 29}
          viewBox="0 0 30 29"
          fill={props.fill || "black"}
        >
          <polygon points="29.207 13.783 14.756 .717 14.055 0 11.402 3.118 10.732 3.835 19.665 11.974 0 11.974 0 17.026 19.756 17.026 11.494 24.447 10.823 25.071 11.402 25.882 13.476 28.189 14.055 29 30 14.594" />
        </svg>
      );
    };
    
    export { default as AddToTodoList } from "./AddToTodoList";
    export { default as ArrowDown } from "./ArrowDown";
    export { default as ArrowUp } from "./ArrowUp";
    export { default as Arrow } from "./Arrow";
    export { default as AvatarGroup } from "./AvatarGroup";
    export { default as Avatar } from "./Avatar";
    export { default as Bachelor } from "./Bachelor";
    export { default as BulletList } from "./BulletList";
    export { default as Camera } from "./Camera";
    export { default as CaretDown } from "./CaretDown";
    export { default as CaretLeft } from "./CaretLeft";
    export { default as CaretUp } from "./CaretUp";
    export { default as Chat } from "./Chat";
    export { default as CodeFork } from "./CodeFork";
    export { default as Cogs } from "./Cogs";
    export { default as Contentlink } from "./Contentlink";
    export { default as Customlink } from "./Customlink";
    export { default as Date } from "./Date";
    export { default as Discover } from "./Discover";
    export { default as Done } from "./Done";
    export { default as Dot } from "./Dot";
    export { default as Download } from "./Download";
    export { default as Drag } from "./Drag";
    export { default as Dragbutton } from "./Dragbutton";
    export { default as DropDown } from "./DropDown";
    export { default as EditEvent } from "./EditEvent";
    export { default as Edit } from "./Edit";
    export { default as Embed } from "./Embed";
    export { default as Events } from "./Events";
    export { default as ExternalLink } from "./ExternalLink";
    export { default as EyeSlash } from "./EyeSlash";
    export { default as Facebook } from "./Facebook";
    export { default as Favorites } from "./Favorites";
    export { default as Feed } from "./Feed";
    export { default as FileText } from "./FileText";
    export { default as FullScreen } from "./FullScreen";
    export { default as Globe } from "./Globe";
    export { default as GooglePlus } from "./GooglePlus";
    export { default as Grid } from "./Grid";
    export { default as Hamburger } from "./Hamburger";
    export { default as Heart } from "./Heart";
    export { default as Helsinginyliopisto } from "./Helsinginyliopisto";
    export { default as Home } from "./Home";
    export { default as HorizontalResize } from "./HorizontalResize";
    export { default as HyLogo } from "./HyLogo";
    export { default as IdNumber } from "./IdNumber";
    export { default as ImageGallery } from "./ImageGallery";
    export { default as Image } from "./Image";
    export { default as Images } from "./Images";
    export { default as InfoStroke } from "./InfoStroke";
    export { default as Info } from "./Info";
    export { default as Instagram } from "./Instagram";
    export { default as LeikiList } from "./LeikiList";
    export { default as LinkArrow1 } from "./LinkArrow1";
    export { default as LinkArrowDown } from "./LinkArrowDown";
    export { default as LinkArrowLeft } from "./LinkArrowLeft";
    export { default as LinkArrowOffsite } from "./LinkArrowOffsite";
    export { default as LinkArrowUp } from "./LinkArrowUp";
    export { default as LinkArrow } from "./LinkArrow";
    export { default as Linkedin } from "./Linkedin";
    export { default as ListAsBlocks } from "./ListAsBlocks";
    export { default as List } from "./List";
    export { default as Listoflinks } from "./Listoflinks";
    export { default as Location } from "./Location";
    export { default as Log } from "./Log";
    export { default as Login } from "./Login";
    export { default as Logout } from "./Logout";
    export { default as MagnifyMinus } from "./MagnifyMinus";
    export { default as MagnifyPlus } from "./MagnifyPlus";
    export { default as Mail } from "./Mail";
    export { default as Master } from "./Master";
    export { default as Minus } from "./Minus";
    export { default as Mobile } from "./Mobile";
    export { default as Modify } from "./Modify";
    export { default as NaviTriangle } from "./NaviTriangle";
    export { default as NewGroup } from "./NewGroup";
    export { default as NewPerson } from "./NewPerson";
    export { default as Notification } from "./Notification";
    export { default as OpinderLogoNew } from "./OpinderLogoNew";
    export { default as OpinderLogo } from "./OpinderLogo";
    export { default as Pdf } from "./Pdf";
    export { default as People } from "./People";
    export { default as PermissionAll } from "./PermissionAll";
    export { default as PermissionGroup } from "./PermissionGroup";
    export { default as PermissionPrivate } from "./PermissionPrivate";
    export { default as PersonOutline } from "./PersonOutline";
    export { default as Person } from "./Person";
    export { default as Phone } from "./Phone";
    export { default as Play } from "./Play";
    export { default as Plus } from "./Plus";
    export { default as Preview } from "./Preview";
    export { default as Profile } from "./Profile";
    export { default as Question } from "./Question";
    export { default as Remove } from "./Remove";
    export { default as Retweet } from "./Retweet";
    export { default as RotateLeft } from "./RotateLeft";
    export { default as RotateRight } from "./RotateRight";
    export { default as Search } from "./Search";
    export { default as Share } from "./Share";
    export { default as SocialMedia } from "./SocialMedia";
    export { default as Spinner } from "./Spinner";
    export { default as SquareChecked } from "./SquareChecked";
    export { default as Square } from "./Square";
    export { default as Time } from "./Time";
    export { default as TodoList } from "./TodoList";
    export { default as Tour } from "./Tour";
    export { default as Twitter } from "./Twitter";
    export { default as UnitsAndFaculties } from "./UnitsAndFaculties";
    export { default as Url } from "./Url";
    export { default as Video } from "./Video";
    export { default as Warning } from "./Warning";
    export { default as Wrench } from "./Wrench";
    export { default as Youtube } from "./Youtube";