Release
2
.gitignore
vendored
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
.DS_Store
|
||||
node_modules
|
||||
5
.npmignore
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
.coverage
|
||||
.DS_Store
|
||||
bin
|
||||
tmp
|
||||
node_modules
|
||||
21
LICENSE.txt
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
The MIT License (MIT)
|
||||
|
||||
Copyright (c) 2015 Ryan McGrath
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
in the Software without restriction, including without limitation the rights
|
||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
copies of the Software, and to permit persons to whom the Software is
|
||||
furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in all
|
||||
copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||
SOFTWARE.
|
||||
249
README.md
Normal file
|
|
@ -0,0 +1,249 @@
|
|||
react-svgpack
|
||||
==============
|
||||
This project provides a way to utilize SVGs in React-based projects with easy fallback to PNGs for browsers that don't have SVG support. It provides three pieces:
|
||||
|
||||
- A **Babel plugin**, to track which SVGs you're using in your codebase in order to bundle only those specific graphics. No more shipping assets that you don't even use.
|
||||
|
||||
- A **Browserify plugin** that handles the behind-the-scenes aspects of creating your icon library as a require()-able JS module and injecting it into your bundle. This plugin also handles injecting a lightweight React Component which can be utilized to reference graphics.
|
||||
|
||||
- The aforementioned **React Component**, which transparently handles mapping between SVG and IMG tags in various browsers. It's optimized to be fast, and comes with no external dependencies beyond React itself.
|
||||
|
||||
- _**Bonus:**_ react-svgpack ships with **over 1,000 ready to use SVG icons** from various different open source projects. Hit the ground running and avoid the tedious task of gathering all the assets you need.
|
||||
|
||||
Installation and Usage
|
||||
==============
|
||||
react-svgpack is currently delivered via npm; if there's some other module vendor system that people want to utilize open a pull request and I'll take a look at it.
|
||||
|
||||
npm install react-svgpack
|
||||
|
||||
Configuration is pretty straightforward - create an instance of SVGPack and supply the options you want. There are some sensible defaults which are highlighted below.
|
||||
|
||||
|
||||
``` javascript
|
||||
var SVGPack = require('react-svgpack');
|
||||
|
||||
var packer = new SVGPack({
|
||||
// If you need more details about the packing process
|
||||
verbose: false,
|
||||
|
||||
// Which mode this is running in
|
||||
mode: 'svg',
|
||||
|
||||
// Optional: You can provide your own SVG source directory here.
|
||||
// SVGPack will then look here for any custom-supplied icons.
|
||||
svgSourceDirectory: null,
|
||||
|
||||
// SVGPack uses svgo behind the scenes, and can pass your
|
||||
// configuration directly to the SVGO constructor/instance.
|
||||
svgo: {
|
||||
plugins: [
|
||||
{removeViewBox: false}, // We tend to need this kept around
|
||||
{removeUselessStrokeAndFill: false}, // Can munge graphics
|
||||
{removeEmptyAttrs: false} // Can be useful to keep around
|
||||
]
|
||||
},
|
||||
|
||||
// When you're in PNG mode you can use this object to control
|
||||
// various options in regards to how your PNG fallbacks are
|
||||
// rendered. See the "PNG Mode" section below for more details.
|
||||
png: {
|
||||
antialias: true,
|
||||
density: 1000, // Helps for creating crisp PNGs
|
||||
width: 32, // A general width they'll all be exported to
|
||||
quality: 90, // A hint to the PNG generator, 0 - 100
|
||||
compressorQuality: [60, 80], // Optional PNGQuant quality range
|
||||
background: 'rgba(0,0,0,0)', // Provides transparency
|
||||
speed: 3, // PNGQuant again - value between 1 and 10
|
||||
ie6fix: false // Supported by PNGQuant but you'll never need it
|
||||
}
|
||||
});
|
||||
|
||||
```
|
||||
|
||||
Now that you've got your packer set up, you'll need to enable two plugins in your build. First up is the Browserify plugin - this needs to come before the Babel plugin/transform.
|
||||
|
||||
``` javascript
|
||||
// Your Browserify setup, whatever it is
|
||||
var browserify = require('browserify'),
|
||||
myBundler = browserify({'...': '...'});
|
||||
|
||||
myBundler.plugin(packer.BrowserifyInjector, {});
|
||||
```
|
||||
|
||||
With that set, we just need to add the Babel plugin:
|
||||
|
||||
``` javascript
|
||||
var babelify = require('babelify');
|
||||
|
||||
myBundler.transform(babelify.configure({
|
||||
plugins: [packer.JSXSVGTracker]
|
||||
}));
|
||||
```
|
||||
|
||||
You're now good to go! These two plugins will talk to each other and handle creating an on-the-fly bundle of the icons you use. An example of your client-side (ES6) code might be:
|
||||
|
||||
``` javascript
|
||||
import React from 'react';
|
||||
import SVG from 'react-svgpack';
|
||||
|
||||
class IconShowcase extends React.Component {
|
||||
render() {
|
||||
return <SVG uri="polymer/notification/disc_full" width="48" height="48"/>;
|
||||
}
|
||||
}
|
||||
```
|
||||
|
||||
To view the available defalt icons, your best bet is to clone this repo and scope out the _svgs_ folder yourself. When I have time I'll build a github pages site to preview them all or something. Polymer, Font-Awesome and a few others are all available.
|
||||
|
||||
The React Component
|
||||
==============
|
||||
The included React Component handles a lot of annoying stuff for you. The breakdown of supported properties is below:
|
||||
|
||||
```javascript
|
||||
{
|
||||
width: 0,
|
||||
height: 0,
|
||||
|
||||
// The icon identifier to be specified.
|
||||
uri: null,
|
||||
|
||||
// react-svgpack default icons come preconfigured with a viewBox
|
||||
// so that you don't have to think about it, but if you ever need
|
||||
// to, you can override it here.
|
||||
viewBox: null,
|
||||
|
||||
// This is defaulted as I've found it helps scaling in some
|
||||
// browsers. YMMV, so override as need be!
|
||||
preserveAspectRatio: 'xMinYMin meet',
|
||||
|
||||
// Accessibility traits! This component will handle mapping between
|
||||
// accessibility requirement differences between <svg> and <img>
|
||||
// tags for you. PNG variants using <img> tags will have their title
|
||||
// and desc data set as alt text. Insofar as I can tell, this is
|
||||
// the most cross-browser solution for icon-accessibility traits.
|
||||
role: 'img',
|
||||
title: '',
|
||||
desc: '',
|
||||
'aria-labeledby': 'title desc'
|
||||
}
|
||||
```
|
||||
|
||||
I should note that this component always tried to take accessibility into account, but like any project bugs can randomly come up. Do file a bug if you see any issues with this.
|
||||
|
||||
Adding Your Own Custom Icons
|
||||
==============
|
||||
It's really easy! Design your icons, export the SVG, and make sure there's a viewBox property set. Drop it into your root folder, and set the **svgSourceDirectory** configuration property of your packer. URI lookups are just folder structures - e.g:
|
||||
|
||||
```
|
||||
...uri="polymer/notification/disc_full"...
|
||||
|
||||
becomes
|
||||
|
||||
.../folder/polymer/notification/disc_full.svg
|
||||
```
|
||||
|
||||
PNG Mode
|
||||
==============
|
||||
SVGs are great, but sometimes you have to support browsers that can't really use them. Such browsers may be, but are also not limited to:
|
||||
|
||||
- Internet Explorer 8 (and down, I guess)
|
||||
- Older versions of Android's stock web browser
|
||||
|
||||
Now, with that said, I take a very opinionated approach on this - IE8 is the only thing worth supporting here. Older versions of Android already have a horrendously negative user experience on any pure-JS app, which anything involving React will likely be. IE8 still sees use in some areas where users can't (surprisingly, I know) upgrade their browser, and being that it's typically on a desktop machine the performance can more or less keep up.
|
||||
|
||||
If you're building a website, honestly, React isn't something you should be using - a website and a web application are two very different beasts. If you find yourself building the former, you may be served better by one of the following projects:
|
||||
|
||||
- **[Iconizr](https://github.com/jkphl/node-iconizr)**
|
||||
- **[svg-sprite](https://github.com/jkphl/svg-sprite)**
|
||||
|
||||
They're both very related, but they're more based around the needs of a typical website development workflow.
|
||||
|
||||
If you're on board with all of that and you need to support IE8, let's get started by making sure some extra dependencies are installed. We use ImageMagick for generating PNGs; every single project I see uses PhantomJS behind the scenes but this drives me crazy as it's somewhat buggy and the idea of running a browser instance just to generate graphics is ridiculous.
|
||||
|
||||
***OS X, using Homebrew:***
|
||||
```sh
|
||||
# --with-librsvg is very important. ImageMagick will produce some
|
||||
# horrible quality PNGs without it.
|
||||
brew install imagemagick --with-librsvg
|
||||
```
|
||||
|
||||
**Ubuntu:**
|
||||
```sh
|
||||
# I believe librsvg is default'd on most *nix's, but someone please
|
||||
# correct me if I'm wrong.
|
||||
sudo apt-get install librsvg2-dev imagemagick
|
||||
```
|
||||
|
||||
**Install node-graphicsmagick:**
|
||||
```sh
|
||||
npm install gm
|
||||
```
|
||||
|
||||
**_Optional:_ Install PNGQuant**
|
||||
```sh
|
||||
npm install node-pngquant-native
|
||||
```
|
||||
|
||||
This is an optional installation because the PNGQuant installation could throw weird errors at points - if it fails you can still do PNG conversions, they just won't be nearly as optimized.
|
||||
|
||||
|
||||
**Finally:**
|
||||
|
||||
With that all said and done, it's as simple as swapping the mode from _'svg'_ to _'png'_. In PNG mode, the library will convert the SVGs you're using into base64 PNG equivalents. IE8 has a ~32kb PNG URI limit, but so far I've yet to find an icon that crosses that.
|
||||
|
||||
```javascript
|
||||
var SVGPack = require('react-svgpack');
|
||||
var packer = new SVGPack({
|
||||
mode: 'png',
|
||||
png: {
|
||||
// Your desired options, if applicable
|
||||
}
|
||||
});
|
||||
```
|
||||
|
||||
It's the author's recommendation that you just create a second build for IE8, as it's really the only browser where PNG data would be useful at this point. Pull requests are welcome to improve rendering and so forth.
|
||||
|
||||
|
||||
Frequently Asked Questions
|
||||
==============
|
||||
- **Why not supply an icon font?**
|
||||
Because, personally speaking, I just find it ridiculous. Yes, it works, and I've used it to great effect in the past just as many of you have - but it feels outside the build and mentally it's just this other "thing" to consider. Use it if you like it, and hey, pull request it if you want it in here - it's just not my thing.
|
||||
- **Why don't you support ____ system?** Probably because I don't use it. I'm not against supporting any other systems, but I'm opting to rely on pull requests to do so as I don't have the time to dig into the nuances of every single one out there.
|
||||
|
||||
Contributions
|
||||
==============
|
||||
Pull requests (and other contributions) are welcome! This applies to anyone, be they coding or contributing graphics.
|
||||
|
||||
- If you are contributing code, great! Please keep it clean and document it. You don't have to be as liberal as I am about it, but I prefer vendoring code that can actually be deciphered.
|
||||
- If you're providing icons, great! Please be sure to leave the "viewBox" attribute in your source, and segment your icons into their own folder.
|
||||
|
||||
Versioning
|
||||
==============
|
||||
This project is maintained under the Semantic Versioning guidelines. This Release/versioning policy is based off of the policy used by **[](https://github.com/FortAwesome/Font-Awesome)**, as it seems like it works well there. Releases will be done with the following format:
|
||||
|
||||
<major>.<minor>.<patch>
|
||||
|
||||
And constructed with the following guidelines:
|
||||
|
||||
- Breaking backward compatibility bumps the major (and resets the minor and patch)
|
||||
- New additions, including new icons, without breaking backward compatibility bumps the minor (and resets the patch)
|
||||
- Bug fixes and misc changes bumps the patch
|
||||
|
||||
For more information on SemVer, please visit **[http://semver.org/](http://semver.org/)**.
|
||||
|
||||
Acknowledgements/Legal
|
||||
==============
|
||||
This project supplies icons from a variety of creators, each of whom may have their own licenses. Where applicable these licenses are include inside their respective SVG folder; I've aimed to include icons that don't put too much burden on the implementer, but open a pull request if something seems off.
|
||||
|
||||
In turn, if an icon author's license requires placing credit for the icons somewhere on your project, you are responsible for doing so. Icon creators work hard and that work isn't (totally) free.
|
||||
|
||||
Icon authors who take issue with their icons being in this project can feel free to email me directly at ryan@venodesigns.net.
|
||||
|
||||
Questions, Issues, Comments?
|
||||
==============
|
||||
You can reach me (the primary author) at the following:
|
||||
|
||||
- Twitter: **[@ryanmcgrath](https://twitter.com/ryanmcgrath/)**
|
||||
- Email: ryan@venodesigns.net
|
||||
|
||||
I am unable to help specific implementation problems (specific to your project, that is) via email. If you do find a bug or experience something that seems like an issue with the project, please feel free to open an issue on the GitHub repository.
|
||||
258
components/svg.js
Normal file
|
|
@ -0,0 +1,258 @@
|
|||
/**
|
||||
* This is a React JSX tag that will take care of managing injecting the
|
||||
* icons properly after they've been compiled into your bundle. As long as you're
|
||||
* using the Browserify plugin this will "just work" - if you'd like to see plugins
|
||||
* for other platforms, submit a pull request!
|
||||
*
|
||||
* Note that this file is liberally commented; React is pretty intuitive but I prefer
|
||||
* if people can easily decipher what I'm trying to accomplish and learn from it. You
|
||||
* may have a different style, but try to follow it here if you modify this.
|
||||
*
|
||||
* @author Ryan McGrath <ryan@venodesigns.net>, contributors (see repo)
|
||||
* @license MIT
|
||||
* @repo https://github.com/ryanmcgrath/react-svgpack/
|
||||
*/
|
||||
|
||||
var React = require('react');
|
||||
icons = require('react-svgpack-icons');
|
||||
|
||||
|
||||
/**
|
||||
* A very basic and simple wrapper around console.warn, for debug purposes.
|
||||
*
|
||||
* @param {String|Object|Number|Array} A thing, which you may want, to send.
|
||||
*/
|
||||
var warn = function(msg) {
|
||||
if(typeof console !== 'undefined' && typeof console.warn === 'function')
|
||||
console.warn(msg);
|
||||
};
|
||||
|
||||
|
||||
/**
|
||||
* The main JSX tag you'll be wanting. Depending on which mode your bundle is
|
||||
* in, it will handle injecting either an <svg> tag or an <img> tag. For any global
|
||||
* styling needs you can safely target the "react-svgpack-icon" class in CSS - you
|
||||
* can also add your own, of course, but there's one there for convenience.
|
||||
*
|
||||
* @class
|
||||
*/
|
||||
var SVG = React.createClass({
|
||||
/**
|
||||
* More or less internal method for React; just configures an initial default
|
||||
* setup for properties. You can refer to this as a general guide on what you
|
||||
* should pass in.
|
||||
*
|
||||
* @returns {Object} A default property configuration for this Component.
|
||||
*/
|
||||
getDefaultProps: function() {
|
||||
return {
|
||||
width: 0,
|
||||
height: 0,
|
||||
uri: null,
|
||||
role: 'img',
|
||||
title: '',
|
||||
desc: '',
|
||||
|
||||
// These are only used for SVGs as the Browser will do magic by default
|
||||
// for PNGs. Experienced SVG users can override this as necessary but I'm
|
||||
// interested in providing an easier solution, not the slight headache that
|
||||
// SVG can be.
|
||||
//
|
||||
// If you desire to pass a new viewBox, do it as a String in the format of
|
||||
// '0 0 0 0'.
|
||||
viewBox: null,
|
||||
preserveAspectRatio: 'xMidYMid meet',
|
||||
|
||||
// Currently (July 2015ish~) this appears to be the best method for
|
||||
// working with screen readers. It is entirely possible that an implementer
|
||||
// would want to set this entire node as aria-hidden, though - I believe
|
||||
// that will override this for accessibility purposes but I'm totally open
|
||||
// to being corrected on this.
|
||||
'aria-labeledby': 'title desc'
|
||||
}
|
||||
},
|
||||
|
||||
/**
|
||||
* These just describe what a typical <SVG/> Component instance
|
||||
* needs. Not everything is required, and we automatically try to map certain
|
||||
* SVG properties to their <img> counterparts if we can (and need to).
|
||||
*/
|
||||
propTypes: {
|
||||
uri: React.PropTypes.string.isRequired,
|
||||
|
||||
// I've often found myself using these two types interchangeably in
|
||||
// day to day React coding, and I chalk it up to years of writing HTML. Thus,
|
||||
// we just accept both types for width and height values.
|
||||
width: React.PropTypes.oneOfType([
|
||||
React.PropTypes.number,
|
||||
React.PropTypes.string
|
||||
]).isRequired,
|
||||
|
||||
height: React.PropTypes.oneOfType([
|
||||
React.PropTypes.number,
|
||||
React.PropTypes.string
|
||||
]).isRequired,
|
||||
|
||||
// These are not explicitly required, but users can certainly pass them in
|
||||
// if they have need to.
|
||||
viewBox: React.PropTypes.string,
|
||||
preserveAspectRatio: React.PropTypes.string,
|
||||
role: React.PropTypes.string,
|
||||
'aria-labeledby': React.PropTypes.string
|
||||
},
|
||||
|
||||
/**
|
||||
* This is a pretty standard thing here, but it's 2AM so I'll document it anyway.
|
||||
* For possible performance reasons we do a few checks here to see if it's even
|
||||
* worth bothering with the re-rendering and the what not for this Component. This
|
||||
* is very shallow, but at the end of the day we don't care about complex Objects or
|
||||
* Arrays or what not being passed to this Component. If you do that, you're doing
|
||||
* it wrong.
|
||||
*
|
||||
* Considering it's essentially a glorified image tag it's likely worth it. We
|
||||
* explicitly don't care about state here; IF YOU MODIFY THIS COMPONENT TO CARE
|
||||
* ABOUT STATE YOU ARE RESPONSIBLE FOR ALSO MODIFYING THIS METHOD.
|
||||
*
|
||||
* @param {Object} nextProps Properties supplied by whatever is updating this.
|
||||
* @param {Object} nextState State supplied by whatever is updating this (N/A).
|
||||
* @returns {Boolean} A boolean value indicating whether React should do anything.
|
||||
*/
|
||||
shouldComponentUpdate: function(nextProps, nextState) {
|
||||
var p = this.props,
|
||||
np = nextProps, // lol
|
||||
k;
|
||||
|
||||
if(this.props === nextProps) // Shallow reference
|
||||
return false;
|
||||
|
||||
for(k in p)
|
||||
if(p.hasOwnProperty(k) && (!np.hasOwnProperty(k) || p[k] !== np[k]))
|
||||
return true;
|
||||
|
||||
for(k in np)
|
||||
if(np.hasOwnProperty(k) && !p.hasOwnProperty(k))
|
||||
return true;
|
||||
|
||||
return false;
|
||||
},
|
||||
|
||||
/**
|
||||
* This needs no documentation, it's a render method.
|
||||
*
|
||||
* @returns {Object} A JSX "SVG" tag configured based on the properties assigned.
|
||||
*/
|
||||
render: function() {
|
||||
if(icons.mode === 'png')
|
||||
return this.renderAsPNG();
|
||||
else
|
||||
return this.renderAsSVG();
|
||||
},
|
||||
|
||||
/**
|
||||
* This seems a little heavy to do here, yes, but I think it's the right
|
||||
* way to go about it - if anyone has better ideas please feel free to open
|
||||
* an issue or submit a pull request.
|
||||
*
|
||||
* Basically, for an <img> tag we need to shuffle some attributes around. We
|
||||
* also want to make this accessible, if possible - ideally by moving over the
|
||||
* accessibility attributes from the typical <svg> approach to here. We also
|
||||
* need to move the uri attribute, and considering it's a base64 PNG I don't
|
||||
* feel like arbitrarily copying the data to the state and duplicating it.
|
||||
*
|
||||
* In reality this might be overkill, but hey, it works fine in my opinion.
|
||||
* Pull request it if it bothers you. We optimize in shouldComponentUpdate
|
||||
* anyway to make it so this hopefully won't be re-hit too much.
|
||||
*
|
||||
* @returns {Object} A JSX Img tag with SVG attributes shuffled to match.
|
||||
*/
|
||||
renderAsPNG: function() {
|
||||
var props = {
|
||||
src: ['data:image/png;base64,', icons.icons[this.props.uri]].join(''),
|
||||
alt: this.props.title + ': ' + this.props.desc,
|
||||
'aria-labeledby': 'alt'
|
||||
};
|
||||
|
||||
// We don't want to copy these over. This is also rather naive; there's little
|
||||
// reason anyone should be passing Objects or Arrays or whatever the kids are
|
||||
// into these days into this tag, but if they do, it has the potential to get
|
||||
// stupid.
|
||||
for(var prop in this.props) {
|
||||
if(
|
||||
prop === 'src' || prop === 'title' ||
|
||||
prop === 'desc' || prop === 'aria-labeledby'
|
||||
) continue;
|
||||
|
||||
if(prop === 'className')
|
||||
props.className = 'react-svgpack-icon ' + this.props.className;
|
||||
|
||||
props[prop] = this.props[prop];
|
||||
}
|
||||
|
||||
return React.createElement('img', React.__spread({}, props));
|
||||
},
|
||||
|
||||
/**
|
||||
* This is, in comparison, much more straightforward. We provide some default stuff
|
||||
* that makes working with an SVG tag a bit more like working with an IMG tag.
|
||||
*
|
||||
* @returns {Object} A JSX SVG tag configured and what not.
|
||||
*/
|
||||
renderAsSVG: function() {
|
||||
var path,
|
||||
accessibility,
|
||||
icon,
|
||||
props = {};
|
||||
|
||||
accessibility = '<title>' + this.props.title + '</title>';
|
||||
accessibility += '<desc>' + this.props.desc + '</desc>';
|
||||
|
||||
// If it's missing there's likely no reason to inject anything else
|
||||
// at all, I don't think... maybe something else should happen here for
|
||||
// accessibility purposes? Not sure.
|
||||
if(!icons.icons[this.props.uri]) {
|
||||
warn('Warning: Icon missing for ' + this.props.uri);
|
||||
return null;
|
||||
} else {
|
||||
icon = icons.icons[this.props.uri];
|
||||
path = accessibility + icon.data;
|
||||
if(icon.props.viewBox !== null)
|
||||
props.viewBox = icon.props.viewBox;
|
||||
}
|
||||
|
||||
for(var prop in this.props) {
|
||||
if(prop === 'uri' || prop === 'title' || prop === 'desc')
|
||||
continue;
|
||||
|
||||
// We always want our specific className here, for target-ability
|
||||
// between modes. User should always be able to append theirs though.
|
||||
if(prop === 'className') {
|
||||
props.className = 'react-svgpack-icon ' + this.props.className;
|
||||
continue;
|
||||
}
|
||||
|
||||
// We provide a default viewBox for all our icons; user should always be
|
||||
// able to override though, and their own custom icons may require doing so.
|
||||
//
|
||||
if(prop === 'viewBox') {
|
||||
if(this.props.viewBox !== null) {
|
||||
props.viewBox = this.props.viewBox;
|
||||
}
|
||||
|
||||
continue;
|
||||
}
|
||||
|
||||
props[prop] = this.props[prop];
|
||||
}
|
||||
|
||||
// We avoid the use of JSX in this file as it doesn't undergo parsing by
|
||||
// Babel (or any JSX parser, for that matter) due to where it's injected in
|
||||
// the build system(s). Luckily this isn't too verbose or anything.
|
||||
return React.createElement('svg', React.__spread({}, props, {
|
||||
dangerouslySetInnerHTML: {__html: path}
|
||||
}));
|
||||
}
|
||||
});
|
||||
|
||||
|
||||
// Go forth, lol
|
||||
module.exports = SVG;
|
||||
408
index.js
Normal file
|
|
@ -0,0 +1,408 @@
|
|||
/**
|
||||
* SVGPack is a library to make automating SVG/PNG usage in React
|
||||
* a bit more streamlined. It consists of a few key components:
|
||||
*
|
||||
* - A Babel transformer/plugin that determines which SVG
|
||||
* files you actually want to load, straight from your
|
||||
* source.
|
||||
*
|
||||
* - An easy to use <SVG.../> React JSX tag that ties in with
|
||||
* this library.
|
||||
*
|
||||
* - A Browserify plugin that will grab your SVG files, optimize
|
||||
* them, and auto-inject them into your bundle as a require()-able
|
||||
* module. The <SVG.../> tag will also transparently handle adding
|
||||
* things to the browser document for you.
|
||||
*
|
||||
* - Bonus: For browsers that don't support PNG (e.g, IE8) you can
|
||||
* instruct SVGPack to build a module with base64'd PNGs.
|
||||
*
|
||||
* Found a bug, use Webpack, need binary pngs instead of base64?
|
||||
* Send a pull request. :)
|
||||
*/
|
||||
|
||||
var SVGO = require('svgo'),
|
||||
fs = require('fs'),
|
||||
async = require('async'),
|
||||
through = require('through2'),
|
||||
merge = require('lodash/object/merge'),
|
||||
ReactSVGComponentFilePath = require.resolve('./components/svg.js'),
|
||||
im, pngquant;
|
||||
|
||||
// Optional dependencies
|
||||
try {
|
||||
pngquant = require('node-pngquant-native');
|
||||
im = require('gm').subClass({
|
||||
imageMagick: true
|
||||
});
|
||||
} catch(e) {
|
||||
// Nothing to do here
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* SVGPack, constructor. The only truly required option is the
|
||||
* "svgSourceDirectory", which should be the full path to the root
|
||||
* directory where your source SVGs are located.
|
||||
*
|
||||
* @constructor
|
||||
* @param {Object} options Options
|
||||
* @return {Object} An instance of SVGPack to do things with.
|
||||
*/
|
||||
var SVGPack = function(options) {
|
||||
if(!(this instanceof SVGPack))
|
||||
return new SVGPack(options);
|
||||
|
||||
// This is a reference to the directory where we've got
|
||||
// provided SVG files held. The user can specify a root directory of
|
||||
// their own in the options below; we'll always check theirs first, falling
|
||||
// back to checking ours if there's no hit.
|
||||
this._internalSVGDirectory = __dirname + '/svgs/';
|
||||
|
||||
this.opts = merge({
|
||||
verbose: false,
|
||||
mode: 'svg',
|
||||
|
||||
// We provide some default SVGO options that work well for the icons in this
|
||||
// project; users can override but keep in mind that it's ill-advised at the time
|
||||
// of writing this to remove the viewBox attributes. This may change in a later release.
|
||||
//
|
||||
// (Removing the viewBox can cause very wonky issues in IE, and it helps to size the various icons).
|
||||
svgSourceDirectory: '',
|
||||
svgo: {
|
||||
plugins: [
|
||||
{removeViewBox: false}, // See note above ---^
|
||||
{removeUselessStrokeAndFill: false}, // This can clobber some icons, just leave it.
|
||||
{removeEmptyAttrs: false} // I find this helpful, others may not.
|
||||
]
|
||||
},
|
||||
|
||||
png: {
|
||||
antialias: true,
|
||||
density: 1000,
|
||||
width: 32,
|
||||
quality: 90,
|
||||
compressorQuality: [60, 80],
|
||||
background: 'rgba(0,0,0,0)',
|
||||
speed: 3,
|
||||
ie6fix: false
|
||||
}
|
||||
}, options);
|
||||
|
||||
// This is our grand database of SVGs. A great @TODO here would
|
||||
// be some caching, but I've yet to hit speed limitations where I've
|
||||
// really needed it. Pull requests welcome!
|
||||
this.SVGS = {};
|
||||
|
||||
// Basic binding() and such for pieces we use later on in the lifepsan
|
||||
// of this object. See the respective methods for more details.
|
||||
this.svgo = new SVGO(this.opts.svgo);
|
||||
this.JSXSVGTracker = this._SVGTracker.bind(this);
|
||||
this.BrowserifyInjector = this._BrowserifyInjector.bind(this);
|
||||
this.readAndOptimizeSVGs = this._readAndOptimizeSVGs.bind(this);
|
||||
|
||||
// PNG mode might not be needed or desired by some people so I don't see a reason
|
||||
// to make them screw around with extra dependencies. For those who opt into it,
|
||||
// let's check and ensure that they've got the required modules installed.
|
||||
//
|
||||
// gm not being around is an error; pngquant is a nice-to-have but we can technically
|
||||
// run without it.
|
||||
if(this.opts.mode === 'png') {
|
||||
if(!im)
|
||||
throw new Error(
|
||||
'PNG mode, but no trace of Node gm.\n' +
|
||||
'You probably want to run:\n\n"npm install gm"\n\n and make sure ' +
|
||||
'that ImageMagick is installed with librsvg support. On a Mac ' +
|
||||
'with Homebrew, this would be something like:\n\n' +
|
||||
'brew install imagemagick --with-librsvg\n\n'
|
||||
);
|
||||
|
||||
if(!pngquant)
|
||||
console.warn(
|
||||
'PNG mode, but no trace of pngquant. Compilation will continue ' +
|
||||
'but PNGs may be un-optimized. To fix this you probably want to run:' +
|
||||
'\n\nnpm install node-pngquant-native\n\n'
|
||||
)
|
||||
}
|
||||
|
||||
return this;
|
||||
};
|
||||
|
||||
|
||||
/**
|
||||
* Handles async reading in all the SVG files and optimizing them. Really
|
||||
* nothing too special here - just async.map'd later on down the file.
|
||||
*
|
||||
* @param {Function} callback Upon completion this junks runs.
|
||||
*/
|
||||
SVGPack.prototype._readAndOptimizeSVGs = function(key, callback) {
|
||||
var packer = this,
|
||||
internalFilePath = this._internalSVGDirectory + key + '.svg',
|
||||
filePath = packer.opts.svgSourceDirectory + key + '.svg';
|
||||
|
||||
var onSVGOComplete = function(result) {
|
||||
packer.SVGS[key] = result;
|
||||
callback(null, result);
|
||||
};
|
||||
|
||||
fs.readFile(filePath, 'utf8', function(error, data) {
|
||||
if(!error)
|
||||
return packer.svgo.optimize(data, onSVGOComplete);
|
||||
|
||||
fs.readFile(internalFilePath, 'utf8', function(e, d) {
|
||||
if(!e)
|
||||
return packer.svgo.optimize(d, onSVGOComplete);
|
||||
|
||||
console.warn('Warning: Could not load ' + key);
|
||||
return callback(e, null);
|
||||
});
|
||||
});
|
||||
};
|
||||
|
||||
|
||||
/**
|
||||
* A Babel "plugin/transformer" that just tracks unique <SVG.../>
|
||||
* JSX tags in your source code. Note that this does absolutely no
|
||||
* modifications - just accumulates the unique SVG uris for the mapping.
|
||||
*
|
||||
* @param {Object} babel This will be auto-passed, most likely, by Babel.
|
||||
* @returns {Object} babel.Transformer used for the babel'ing. You know the one.
|
||||
*/
|
||||
SVGPack.prototype._SVGTracker = function(babel) {
|
||||
var packer = this;
|
||||
|
||||
return new babel.Transformer('react-svgpack', {
|
||||
JSXElement: function JSXElement(node, parent, scope, file) {
|
||||
if(node.openingElement.name.name !== 'SVG')
|
||||
return;
|
||||
|
||||
var attributes = node.openingElement.attributes,
|
||||
l = attributes.length,
|
||||
i = 0;
|
||||
|
||||
for(; i < l; i++) {
|
||||
if(attributes[i].name.name !== 'uri')
|
||||
continue;
|
||||
|
||||
packer.SVGS[attributes[i].value.value] = 1;
|
||||
}
|
||||
}
|
||||
});
|
||||
};
|
||||
|
||||
|
||||
/**
|
||||
* A Browserify plugin that hooks in to the Browserify build pipeline and injects
|
||||
* your icons as a require()-able module. Really you don't even need to require()
|
||||
* them down the road as the <SVG.../> tag will handle injecting it for you, but
|
||||
* it could prove useful in some cases I suppose - JUST:
|
||||
*
|
||||
* var icons = require('react-svgpack-icons');
|
||||
*
|
||||
* or if you're into that ES6:
|
||||
*
|
||||
* import icons from 'react-svgpack-icons';
|
||||
*
|
||||
* If you use another module loader or something I'm sure you can probably figure
|
||||
* it out - I tend to stick with the above. This also handles injecting the <SVG/>
|
||||
* tag library into your bundle, importable as "react-svgpack".
|
||||
*
|
||||
* Originally I wanted to find a way to just have Babel shove this in, but I
|
||||
* couldn't figure out a way to do it cleanly so this works. If you use Webpack
|
||||
* and would like to see a plugin like this, pull requests are welcome.
|
||||
*
|
||||
* Note: you almost never need to call this yourself; you really just wanna pass
|
||||
* it to Browserify instead. See the full documentation for more details.
|
||||
*
|
||||
* @param {Object} browserify An instance of Browserify for this to hook into.
|
||||
* @param {String} imgType Either "png" or "svg".
|
||||
* @returns {Object} browserify The instance being operated on.
|
||||
*/
|
||||
SVGPack.prototype._BrowserifyInjector = function(browserify, opts) {
|
||||
var startListeningToThisCompleteMessOfALibraryAgain = function() {
|
||||
browserify.pipeline.get('pack').unshift(this.compile());
|
||||
}.bind(this);
|
||||
|
||||
browserify.external('react-svgpack');
|
||||
browserify.external('react-svgpack-icons');
|
||||
browserify.on('reset', startListeningToThisCompleteMessOfALibraryAgain);
|
||||
startListeningToThisCompleteMessOfALibraryAgain();
|
||||
return browserify;
|
||||
};
|
||||
|
||||
|
||||
/**
|
||||
* Handles actually compiling the SVG (or PNG) assets into a module, then passing
|
||||
* it into the build stream for inclusion in the final bundle. I'll note that this
|
||||
* was a massive PITA to decipher how to do - comments are your friends, Node devs.
|
||||
*
|
||||
* This is the only method that is "callback-hell"-ish, but I've chosen not to break
|
||||
* it up because it still fits on one screen of code and is follow-able enough.
|
||||
*
|
||||
* @returns {Function} A through2 stream in object mode, which Browserify needs.
|
||||
*/
|
||||
SVGPack.prototype.compile = function() {
|
||||
var packer = this,
|
||||
write = function(buf, enc, next) {
|
||||
next(null, buf);
|
||||
};
|
||||
|
||||
var end = function(next) {
|
||||
var keys = Object.keys(packer.SVGS),
|
||||
stream = this;
|
||||
|
||||
async.map(keys, packer.readAndOptimizeSVGs, function(error, results) {
|
||||
fs.readFile(ReactSVGComponentFilePath, 'utf8', function(e, data) {
|
||||
stream.push({
|
||||
id: 'react-svgpack',
|
||||
externalRequireName: 'react-svgpack',
|
||||
standaloneModule: 'react-svgpack',
|
||||
hasExports: true,
|
||||
source: data,
|
||||
|
||||
// An empty deps object is important here as we don't want to
|
||||
// accidentally bundle a second copy of React or the icons as
|
||||
// they're require()'d in the source. Don't change this.
|
||||
deps: {}
|
||||
});
|
||||
|
||||
var icons = {
|
||||
id: 'react-svgpack-icons',
|
||||
externalRequireName: 'react-svgpack-icons',
|
||||
standaloneModule: 'react-svgpack-icons',
|
||||
hasExports: true,
|
||||
deps: {}
|
||||
};
|
||||
|
||||
if(packer.opts.mode === 'png') {
|
||||
packer.compilePNGs.call(packer, function PNGComplete(code) {
|
||||
icons.source = code;
|
||||
stream.push(icons);
|
||||
next();
|
||||
});
|
||||
} else {
|
||||
icons.source = packer.compileSVGs.call(packer);
|
||||
stream.push(icons);
|
||||
next();
|
||||
}
|
||||
});
|
||||
});
|
||||
}
|
||||
|
||||
return through.obj(write, end);
|
||||
};
|
||||
|
||||
|
||||
/**
|
||||
* Compiles the currently loaded SVGs into a JS module, in preparation for
|
||||
* injection into the bundle. The outputted code is optimized slightly readability,
|
||||
* for debugging and so on. SVG and PNG module output are slightly different structure-wise
|
||||
* as with SVG we attach some extra data (viewBox) that PNGs don't need.
|
||||
*
|
||||
* Side note: yes, parsing "HTML/XML/etc" with regex is dumb. This is also totally fine
|
||||
* for right now though.
|
||||
*
|
||||
* @returns {String} The source for this "module" as a String, which Browserify needs.
|
||||
*/
|
||||
SVGPack.prototype.compileSVGs = function() {
|
||||
var keys = Object.keys(this.SVGS),
|
||||
key,
|
||||
i = 0,
|
||||
l = keys.length,
|
||||
viewBoxRegex = /<svg.*?viewBox="(.*?)"/,
|
||||
matches;
|
||||
|
||||
var code = 'module.exports = {\n mode: "svg",\n\n';
|
||||
code += ' icons: {\n';
|
||||
for(; i < l; i++) {
|
||||
key = keys[i];
|
||||
var viewBox = null;
|
||||
matches = viewBoxRegex.exec(this.SVGS[key].data);
|
||||
if(matches)
|
||||
viewBox = matches[1];
|
||||
|
||||
code += ' "' + key + '": {\n';
|
||||
code += ' props: {viewBox: ' + (viewBox ? '"' + viewBox + '"' : null) + '},\n';
|
||||
code += " data: '" + this.SVGS[key].data.replace('<\/svg>', '')
|
||||
.replace(/<\s*svg.*?>/ig, '') + "',\n},\n";
|
||||
}
|
||||
|
||||
return code + '}\n};\n';
|
||||
};
|
||||
|
||||
|
||||
/**
|
||||
* Converts the loaded SVGS into PNGs then returns a JS module, in preparation for
|
||||
* injection into the bundle.
|
||||
*
|
||||
* Somewhat confusingly, though, both compile___() methods in this library "return"
|
||||
* Strings, because Browserify needs that.
|
||||
*
|
||||
* @param {Function} hollaback Called when all the PNGs be converted and the code's done.
|
||||
*/
|
||||
SVGPack.prototype.compilePNGs = function(hollaback) {
|
||||
var packer = this,
|
||||
keys = Object.keys(this.SVGS);
|
||||
|
||||
async.map(keys, packer.convertSVGtoPNG.bind(packer), function(error, pngs) {
|
||||
var i = 0,
|
||||
l = keys.length,
|
||||
code = 'module.exports = {\n mode: "png",\n icons: {\n';
|
||||
|
||||
for(; i < l; i++) {
|
||||
code += ' "' + keys[i] + '": "' + pngs[i] + '",\n';
|
||||
}
|
||||
|
||||
// Remove that dangling "," from the end I guess. Probably don't need to
|
||||
// as Babel/et al would handle it but whatever.
|
||||
hollaback(code.slice(0, -1) + '\n }\n};\n');
|
||||
});
|
||||
};
|
||||
|
||||
|
||||
/**
|
||||
* A method that uses ImageMagick to convert SVGs to PNGs. This scratches a personal
|
||||
* itch of the author, who really doesn't feel like running a headless browser in the
|
||||
* background for a task as simple as converting a bunch of images.
|
||||
*
|
||||
* If you experience bad quality conversions with ImageMagick, you likely need to
|
||||
* install it with librsvg support. For instance, on a Mac with homebrew:
|
||||
*
|
||||
* brew install imagemagick --with-librsvg
|
||||
*
|
||||
* Ta-da, you should be getting solid conversions now. If you routinely have issues
|
||||
* with this you should be able to easily monkeypatch this to use something like
|
||||
* Phantom or... something. See the docs for details.
|
||||
*
|
||||
* @param {String} key A key for the internal SVGS object.
|
||||
* @param {Function} callback A callback that runs when the PNG is ready.
|
||||
*/
|
||||
SVGPack.prototype.convertSVGtoPNG = function(key, callback) {
|
||||
var packer = this,
|
||||
xml = '<?xml version="1.0" encoding="utf-8"?>',
|
||||
patch = '<svg width="32" height="32" preserveAspectRatio="xMinYMin meet" ',
|
||||
svg = new Buffer(xml + this.SVGS[key].data.replace('<svg ', patch));
|
||||
|
||||
// I'll be honest, chaining APIs annoy me - just lemme use an options object.
|
||||
im(svg).background(this.opts.png.background).quality(this.opts.png.quality)
|
||||
.antialias(this.opts.png.antialias).density(this.opts.png.density)
|
||||
.resize(this.opts.png.width).trim()
|
||||
.toBuffer('PNG', function(error, buffer) {
|
||||
if(error) {
|
||||
console.warn('Warning: Could not convert ' + key + ' - ' + error);
|
||||
return callback(error, buffer);
|
||||
}
|
||||
|
||||
// Optimize and convert the buffer to base64 data
|
||||
var quanted = pngquant ? pngquant.compress(buffer, {
|
||||
speed: packer.opts.png.speed,
|
||||
quality: packer.opts.png.compressorQuality,
|
||||
iebug: packer.opts.png.ie6fix
|
||||
}) : buffer;
|
||||
callback(error, quanted.toString('base64'));
|
||||
});
|
||||
};
|
||||
|
||||
|
||||
// You get that thing I sent ya?
|
||||
module.exports = SVGPack;
|
||||
43
package.json
Normal file
|
|
@ -0,0 +1,43 @@
|
|||
{
|
||||
"name": "react-svgpack",
|
||||
"description": "A React Component for handling SVGs coupled with Babel and Browserify plugins to only bundle the SVGs you use.",
|
||||
"author": "Ryan McGrath",
|
||||
"version": "1.0.0",
|
||||
"license": "MIT",
|
||||
|
||||
"dependencies": {
|
||||
"svgo": "^0.5.3",
|
||||
"lodash": "^3.10.1",
|
||||
"through2": "^2.0.0",
|
||||
"async": "^1.4.0"
|
||||
},
|
||||
|
||||
"devDependencies": {
|
||||
"jest": "",
|
||||
"jasmine-node": ""
|
||||
},
|
||||
"scripts": {"test": "jest"},
|
||||
|
||||
"keywords": [
|
||||
"react",
|
||||
"browserify-plugin",
|
||||
"babel-plugin",
|
||||
"browserify",
|
||||
"babel",
|
||||
"svg",
|
||||
"icons",
|
||||
"polymer"
|
||||
],
|
||||
|
||||
"maintainers": [{
|
||||
"name": "Ryan McGrath",
|
||||
"email": "ryan@venodesigns.net",
|
||||
"web": "http://venodesigns.net/"
|
||||
}],
|
||||
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/ryanmcgrath/react-svgpack.git"
|
||||
},
|
||||
"bugs": {"url": "https://github.com/ryanmcgrath/react-svgpack/issues"}
|
||||
}
|
||||
5
svgs/city-icons/credits.txt
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
"City Icons" created by Adam Whitcroft.
|
||||
|
||||
http://adamwhitcroft.com/offscreen/
|
||||
|
||||
"City Icons" work is licensed under a Creative Commons Attribution-NoDerivs 3.0 Unported License (http://creativecommons.org/licenses/by-nd/3.0/). Simply put you're free to use the icons in commercial work provided you do not alter, transform or build upon the icons and that you do provide clear attribution.
|
||||
53
svgs/city-icons/tokyo.svg
Normal file
|
|
@ -0,0 +1,53 @@
|
|||
<svg version="1.1" viewBox="0 0 32 32" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<g id="tokyo">
|
||||
<path id="Tokyo_1" d="M20.654,6.925c0.31-0.354,0.506-0.809,0.51-1.292c0.002-0.013,0-0.913,0-0.913
|
||||
c0-0.125-0.101-0.225-0.225-0.225s-0.225,0.1-0.225,0.225v0.605c-1.748-0.325-3.972-1.012-4.416-1.729h0.594
|
||||
c0.124,0,0.225-0.101,0.225-0.225c0-0.125-0.101-0.225-0.225-0.225h-0.674V2.248h0.674c0.124,0,0.225-0.101,0.225-0.225
|
||||
c0-0.125-0.101-0.225-0.225-0.225h-0.674V0.225C16.217,0.1,16.116,0,15.993,0c-0.125,0-0.225,0.1-0.225,0.225v1.574h-0.674
|
||||
c-0.125,0-0.225,0.1-0.225,0.225c0,0.124,0.1,0.225,0.225,0.225h0.674v0.899h-0.674c-0.125,0-0.225,0.1-0.225,0.225
|
||||
c0,0.124,0.1,0.225,0.225,0.225h0.594C15.243,4.314,13.019,5,11.271,5.326V4.721c0-0.125-0.101-0.225-0.225-0.225
|
||||
s-0.225,0.1-0.225,0.225c0,0,0,0.885,0,0.899c0,0.49,0.195,0.952,0.508,1.311c-4.851,1.878-8.3,6.592-8.3,12.098
|
||||
C3.03,26.182,8.848,32,16,32c7.152,0,12.97-5.818,12.97-12.97C28.97,13.517,25.513,8.8,20.654,6.925z M28.521,19.03
|
||||
c0,3.015-1.071,5.785-2.853,7.949H25.21V25.58c0.508-0.108,0.892-0.56,0.892-1.1c0-0.62-0.504-1.124-1.124-1.124
|
||||
c-0.62,0-1.124,0.504-1.124,1.124c0,0.545,0.391,1,0.907,1.102v1.396h-1.799v-1.574c0-0.125-0.101-0.225-0.225-0.225h-2.023v-1.349
|
||||
h1.116c1.06,0,2-0.915,2.031-1.97c0.004-0.018,0-0.953,0-0.953c0-0.125-0.101-0.225-0.225-0.225s-0.225,0.1-0.225,0.225v0.674
|
||||
h-1.798v-1.574c0-0.125-0.101-0.225-0.225-0.225h-1.124v-1.349h0.667c1.06,0,2-0.915,2.031-1.97c0.004-0.018,0-0.953,0-0.953
|
||||
c0-0.125-0.101-0.225-0.225-0.225c-0.125,0-0.225,0.1-0.225,0.225v0.674h-2.248v-1.574c0-0.125-0.101-0.225-0.225-0.225h-0.674
|
||||
V13.04h0.667c1.06,0,2-0.915,2.031-1.97c0.004-0.018,0-0.953,0-0.953c0-0.125-0.101-0.225-0.225-0.225
|
||||
c-0.125,0-0.225,0.1-0.225,0.225v0.675h-2.698V9.218c0-0.125-0.101-0.225-0.225-0.225h-0.674V7.644h1.116
|
||||
c0.415,0,0.812-0.143,1.143-0.377C25.079,9.019,28.521,13.627,28.521,19.03z M24.978,25.154c-0.372,0-0.675-0.303-0.675-0.674
|
||||
c0-0.373,0.303-0.674,0.675-0.674s0.674,0.302,0.674,0.674C25.652,24.852,25.35,25.154,24.978,25.154z M22.512,25.629v1.349h-0.899
|
||||
v-1.349H22.512z M17.566,25.18v-1.349h2.698v1.349H17.566z M19.814,25.629v1.349h-0.899v-1.349H19.814z M14.869,25.18v-1.349h2.248
|
||||
v1.349H14.869z M17.117,25.629v1.349h-0.899v-1.349H17.117z M15.768,25.629v1.349h-0.899v-1.349H15.768z M10.139,23.381
|
||||
c-0.811,0-1.437-0.673-1.554-1.349h14.798c-0.117,0.676-0.743,1.349-1.554,1.349H10.139z M11.271,25.18v-1.349h3.147v1.349H11.271z
|
||||
M14.419,25.629v1.349H13.52v-1.349H14.419z M13.07,25.629v1.349H12.17v-1.349H13.07z M11.721,25.629v1.349h-0.899v-1.349H11.721z
|
||||
M21.585,11.241c-0.117,0.676-0.744,1.349-1.554,1.349h-8.093c-0.811,0-1.437-0.673-1.554-1.349H21.585z M13.52,10.792V9.442h0.899
|
||||
v1.349H13.52z M17.566,8.993h-3.147V7.644h3.147V8.993z M18.465,9.442v1.349h-0.899V9.442H18.465z M17.117,9.442v1.349h-0.899V9.442
|
||||
H17.117z M15.768,9.442v1.349h-0.899V9.442H15.768z M18.915,14.389h-1.349V13.04h1.349V14.389z M19.814,14.838v1.349h-0.899v-1.349
|
||||
H19.814z M18.465,14.838v1.349h-0.899v-1.349H18.465z M14.869,14.389V13.04h2.248v1.349H14.869z M17.117,14.838v1.349h-0.899v-1.349
|
||||
H17.117z M15.768,14.838v1.349h-0.899v-1.349H15.768z M13.07,14.389V13.04h1.349v1.349H13.07z M14.419,14.838v1.349H13.52v-1.349
|
||||
H14.419z M22.485,16.637c-0.118,0.676-0.744,1.349-1.554,1.349h-9.892c-0.811,0-1.437-0.673-1.554-1.349H22.485z M12.17,16.187
|
||||
v-1.349h0.899v1.349H12.17z M20.264,20.234h0.899v1.349h-0.899V20.234z M17.566,19.784v-1.349h2.248v1.349H17.566z M19.814,20.234
|
||||
v1.349h-0.899v-1.349H19.814z M18.465,20.234v1.349h-0.899v-1.349H18.465z M14.869,19.784v-1.349h2.248v1.349H14.869z
|
||||
M17.117,20.234v1.349h-0.899v-1.349H17.117z M15.768,20.234v1.349h-0.899v-1.349H15.768z M11.721,19.784v-1.349h2.698v1.349H11.721
|
||||
z M14.419,20.234v1.349H13.52v-1.349H14.419z M13.07,20.234v1.349H12.17v-1.349H13.07z M10.822,21.583v-1.349h0.899v1.349H10.822z
|
||||
M17.566,25.629h0.899v1.349h-0.899V25.629z M20.264,25.629h0.899v1.349h-0.899V25.629z M13.586,5.213
|
||||
c1.25-0.39,2.045-0.809,2.406-1.269c0.36,0.46,1.156,0.879,2.406,1.269c0.211,0.066,0.423,0.126,0.629,0.183h-6.07
|
||||
C13.164,5.339,13.375,5.279,13.586,5.213z M20.686,5.845c-0.117,0.676-0.743,1.349-1.554,1.349h-6.295
|
||||
c-0.811,0-1.437-0.673-1.554-1.349H20.686z M11.708,7.274c0.327,0.231,0.717,0.37,1.129,0.37h1.132v1.349h-0.674
|
||||
c-0.125,0-0.225,0.1-0.225,0.225v1.574h-2.698v-0.675c0-0.125-0.101-0.225-0.225-0.225c-0.125,0-0.225,0.1-0.225,0.225
|
||||
c0,0,0,0.885,0,0.899c0,1.078,0.938,2.023,2.016,2.023h0.682v1.349h-0.674c-0.125,0-0.225,0.1-0.225,0.225v1.574H9.473v-0.674
|
||||
c0-0.125-0.101-0.225-0.225-0.225c-0.125,0-0.225,0.1-0.225,0.225c0,0,0,0.885,0,0.899c0,1.077,0.938,2.023,2.016,2.023h0.233v1.349
|
||||
h-0.675c-0.124,0-0.225,0.1-0.225,0.225v1.574H8.573v-0.674c0-0.125-0.101-0.225-0.225-0.225s-0.225,0.1-0.225,0.225
|
||||
c0,0,0,0.885,0,0.899c0,1.078,0.938,2.023,2.015,2.023h0.683v1.349H9.248c-0.125,0-0.225,0.1-0.225,0.225v1.574H7.225V25.58
|
||||
c0.508-0.108,0.891-0.56,0.891-1.1c0-0.62-0.504-1.124-1.124-1.124c-0.62,0-1.124,0.504-1.124,1.124c0,0.545,0.391,1,0.907,1.102
|
||||
v1.396H6.333c-1.782-2.164-2.854-4.934-2.854-7.949C3.479,13.634,6.913,9.031,11.708,7.274z M10.372,25.629v1.349H9.473v-1.349
|
||||
H10.372z M6.992,25.154c-0.372,0-0.674-0.303-0.674-0.674c0-0.373,0.303-0.674,0.674-0.674c0.372,0,0.675,0.302,0.675,0.674
|
||||
C7.667,24.852,7.364,25.154,6.992,25.154z M13.07,31.201c-0.304-0.073-0.604-0.156-0.899-0.251v-1.723h0.899V31.201z M11.721,30.797
|
||||
c-0.306-0.111-0.605-0.238-0.899-0.372v-1.199h0.899V30.797z M10.372,30.209c-0.568-0.287-1.11-0.616-1.625-0.983h1.625V30.209z
|
||||
M13.52,31.303v-0.727h4.946v0.729c-0.797,0.16-1.622,0.245-2.465,0.245C15.151,31.55,14.321,31.465,13.52,31.303z M21.164,30.433
|
||||
c-0.295,0.133-0.594,0.258-0.899,0.37v-1.576h0.899V30.433z M19.814,30.955c-0.295,0.094-0.595,0.176-0.899,0.25v-1.978h0.899
|
||||
V30.955z M18.465,30.126H13.52v-0.899h4.946V30.126z M21.613,30.217v-0.991h1.639C22.734,29.596,22.186,29.928,21.613,30.217z
|
||||
M23.847,28.777H8.153c-0.511-0.413-0.991-0.862-1.432-1.349h18.557C24.838,27.915,24.358,28.364,23.847,28.777z"></path>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 5.9 KiB |
1
svgs/fa/LICENSE.txt
Normal file
|
|
@ -0,0 +1 @@
|
|||
http://creativecommons.org/licenses/by/3.0/
|
||||
13
svgs/fa/adjust4.svg
Executable file
|
|
@ -0,0 +1,13 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 16.0.4, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="216px" height="146px" viewBox="0 0 216 146" enable-background="new 0 0 216 146" xml:space="preserve">
|
||||
<path d="M162.18,41.592c-5.595-9.586-13.185-17.176-22.771-22.771c-9.588-5.595-20.055-8.392-31.408-8.392
|
||||
c-11.352,0-21.822,2.797-31.408,8.392c-9.587,5.594-17.177,13.184-22.772,22.771C48.225,51.179,45.428,61.649,45.428,73
|
||||
c0,11.352,2.798,21.82,8.392,31.408c5.595,9.585,13.185,17.176,22.772,22.771c9.587,5.595,20.056,8.392,31.408,8.392
|
||||
c11.352,0,21.822-2.797,31.408-8.392c9.585-5.594,17.175-13.185,22.771-22.771c5.594-9.587,8.391-20.057,8.391-31.408
|
||||
C170.57,61.648,167.773,51.178,162.18,41.592z M108,117.321c-8.039,0-15.453-1.982-22.242-5.948
|
||||
c-6.789-3.965-12.166-9.344-16.131-16.132c-3.966-6.789-5.948-14.203-5.948-22.242s1.983-15.453,5.948-22.242
|
||||
c3.964-6.789,9.342-12.167,16.131-16.132S99.961,28.678,108,28.678V117.321z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.2 KiB |
20
svgs/fa/align14.svg
Executable file
|
|
@ -0,0 +1,20 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 16.0.4, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="216px" height="146px" viewBox="0 0 216 146" enable-background="new 0 0 216 146" xml:space="preserve">
|
||||
<g>
|
||||
<path d="M175.785,78.214H40.214c-1.413,0-2.635,0.517-3.667,1.549c-1.032,1.031-1.548,2.255-1.548,3.666v10.429
|
||||
c0,1.412,0.516,2.635,1.548,3.666c1.033,1.032,2.255,1.549,3.667,1.549h135.571c1.412,0,2.635-0.517,3.667-1.549
|
||||
c1.032-1.031,1.548-2.254,1.548-3.666V83.429c0-1.411-0.516-2.635-1.548-3.666C178.42,78.73,177.197,78.214,175.785,78.214z"/>
|
||||
<path d="M175.785,109.5H40.214c-1.413,0-2.635,0.516-3.667,1.548c-1.032,1.032-1.548,2.254-1.548,3.666v10.429
|
||||
c0,1.412,0.516,2.635,1.548,3.668c1.033,1.03,2.255,1.547,3.667,1.547h135.571c1.412,0,2.635-0.517,3.667-1.547
|
||||
c1.032-1.033,1.548-2.256,1.548-3.668v-10.429c0-1.412-0.516-2.634-1.548-3.666S177.197,109.5,175.785,109.5z"/>
|
||||
<path d="M179.452,17.19c-1.032-1.031-2.255-1.548-3.667-1.548H40.214c-1.413,0-2.635,0.517-3.667,1.548
|
||||
c-1.032,1.032-1.548,2.255-1.548,3.667v10.429c0,1.412,0.516,2.634,1.548,3.666c1.033,1.032,2.255,1.548,3.667,1.548h135.571
|
||||
c1.412,0,2.635-0.516,3.667-1.548c1.032-1.032,1.548-2.254,1.548-3.666V20.857C181,19.445,180.484,18.223,179.452,17.19z"/>
|
||||
<path d="M175.785,46.929H40.214c-1.413,0-2.635,0.516-3.667,1.548c-1.032,1.032-1.548,2.254-1.548,3.666v10.429
|
||||
c0,1.412,0.516,2.635,1.548,3.666c1.033,1.032,2.255,1.549,3.667,1.549h135.571c1.412,0,2.635-0.517,3.667-1.549
|
||||
c1.032-1.031,1.548-2.254,1.548-3.666V52.143c0-1.413-0.516-2.634-1.548-3.666C178.42,47.445,177.197,46.929,175.785,46.929z"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.8 KiB |
20
svgs/fa/align15.svg
Executable file
|
|
@ -0,0 +1,20 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 16.0.4, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="216px" height="146px" viewBox="0 0 216 146" enable-background="new 0 0 216 146" xml:space="preserve">
|
||||
<g>
|
||||
<path d="M175.785,109.5H40.214c-1.413,0-2.635,0.516-3.667,1.548c-1.032,1.032-1.548,2.254-1.548,3.666v10.429
|
||||
c0,1.412,0.516,2.635,1.548,3.668c1.033,1.03,2.255,1.547,3.667,1.547h135.571c1.412,0,2.635-0.517,3.667-1.547
|
||||
c1.032-1.033,1.548-2.256,1.548-3.668v-10.429c0-1.412-0.516-2.634-1.548-3.666S177.197,109.5,175.785,109.5z"/>
|
||||
<path d="M175.785,78.214H71.5c-1.413,0-2.635,0.517-3.667,1.549c-1.032,1.031-1.548,2.255-1.548,3.666v10.429
|
||||
c0,1.412,0.516,2.635,1.548,3.666c1.033,1.032,2.255,1.549,3.667,1.549h104.285c1.412,0,2.635-0.517,3.667-1.549
|
||||
c1.032-1.031,1.548-2.254,1.548-3.666V83.429c0-1.411-0.516-2.635-1.548-3.666C178.42,78.73,177.197,78.214,175.785,78.214z"/>
|
||||
<path d="M175.785,46.929H50.643c-1.413,0-2.635,0.516-3.667,1.548c-1.032,1.032-1.548,2.254-1.548,3.666v10.429
|
||||
c0,1.412,0.516,2.635,1.548,3.666c1.033,1.032,2.254,1.549,3.667,1.549h125.142c1.412,0,2.635-0.517,3.667-1.549
|
||||
c1.032-1.031,1.548-2.254,1.548-3.666V52.143c0-1.413-0.516-2.634-1.548-3.666C178.42,47.445,177.197,46.929,175.785,46.929z"/>
|
||||
<path d="M179.452,17.19c-1.032-1.031-2.255-1.548-3.667-1.548H81.929c-1.413,0-2.635,0.517-3.667,1.548
|
||||
c-1.032,1.032-1.548,2.255-1.548,3.667v10.429c0,1.412,0.516,2.634,1.548,3.666c1.033,1.032,2.255,1.548,3.667,1.548h93.856
|
||||
c1.412,0,2.635-0.516,3.667-1.548c1.032-1.032,1.548-2.254,1.548-3.666V20.857C181,19.445,180.484,18.223,179.452,17.19z"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.8 KiB |
20
svgs/fa/align16.svg
Executable file
|
|
@ -0,0 +1,20 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 16.0.4, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="216px" height="146px" viewBox="0 0 216 146" enable-background="new 0 0 216 146" xml:space="preserve">
|
||||
<g>
|
||||
<path d="M40.214,67.787h125.144c1.412,0,2.634-0.517,3.666-1.549c1.031-1.031,1.547-2.254,1.547-3.666V52.143
|
||||
c0-1.413-0.516-2.634-1.547-3.666c-1.032-1.032-2.254-1.548-3.666-1.548H40.214c-1.413,0-2.635,0.516-3.667,1.548
|
||||
c-1.032,1.032-1.548,2.254-1.548,3.666v10.429c0,1.412,0.516,2.635,1.548,3.666C37.58,67.27,38.802,67.787,40.214,67.787z"/>
|
||||
<path d="M40.214,36.5h93.856c1.412,0,2.635-0.516,3.668-1.548c1.031-1.032,1.547-2.254,1.547-3.666V20.857
|
||||
c0-1.412-0.516-2.634-1.547-3.667c-1.033-1.031-2.256-1.548-3.668-1.548H40.214c-1.413,0-2.635,0.517-3.667,1.548
|
||||
c-1.032,1.032-1.548,2.255-1.548,3.667v10.429c0,1.412,0.516,2.634,1.548,3.666C37.58,35.984,38.802,36.5,40.214,36.5z"/>
|
||||
<path d="M179.452,111.048c-1.032-1.032-2.255-1.548-3.667-1.548H40.214c-1.413,0-2.635,0.516-3.667,1.548
|
||||
c-1.032,1.032-1.548,2.254-1.548,3.666v10.429c0,1.412,0.516,2.635,1.548,3.668c1.033,1.03,2.255,1.547,3.667,1.547h135.571
|
||||
c1.412,0,2.635-0.517,3.667-1.547c1.032-1.033,1.548-2.256,1.548-3.668v-10.429C181,113.302,180.484,112.08,179.452,111.048z"/>
|
||||
<path d="M40.214,99.072H144.5c1.412,0,2.635-0.517,3.666-1.549c1.032-1.031,1.549-2.254,1.549-3.666V83.429
|
||||
c0-1.411-0.517-2.635-1.549-3.666c-1.031-1.032-2.254-1.549-3.666-1.549H40.214c-1.413,0-2.635,0.517-3.667,1.549
|
||||
c-1.032,1.031-1.548,2.255-1.548,3.666v10.429c0,1.412,0.516,2.635,1.548,3.666C37.58,98.556,38.802,99.072,40.214,99.072z"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.8 KiB |
26
svgs/fa/ambulance8.svg
Executable file
|
|
@ -0,0 +1,26 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 16.0.4, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="216px" height="146px" viewBox="0 0 216 146" enable-background="new 0 0 216 146" xml:space="preserve">
|
||||
<path d="M182.061,11.976c-1.031-1.032-2.254-1.548-3.666-1.548H84.537c-1.413,0-2.635,0.516-3.667,1.548
|
||||
c-1.032,1.032-1.548,2.254-1.548,3.666v26.071H66.286c-1.413,0-2.988,0.354-4.726,1.06c-1.738,0.706-3.123,1.575-4.155,2.607
|
||||
L41.273,61.511c-1.032,1.032-1.901,2.418-2.607,4.155c-0.706,1.739-1.059,3.314-1.059,4.726v33.893
|
||||
c-1.413,0-2.635,0.517-3.667,1.549c-1.032,1.031-1.548,2.254-1.548,3.666s0.516,2.634,1.548,3.666
|
||||
c1.033,1.032,2.255,1.548,3.667,1.548h10.429c0,5.758,2.036,10.673,6.11,14.747c4.074,4.073,8.989,6.109,14.747,6.109
|
||||
c5.758,0,10.673-2.036,14.747-6.109c4.073-4.074,6.11-8.988,6.11-14.747h31.286c0,5.758,2.037,10.673,6.11,14.747
|
||||
c4.074,4.073,8.988,6.109,14.746,6.109s10.674-2.036,14.746-6.109c4.074-4.074,6.111-8.988,6.111-14.747h15.643
|
||||
c1.412,0,2.635-0.516,3.666-1.548s1.549-2.254,1.549-3.666V15.643C183.607,14.23,183.091,13.009,182.061,11.976z M76.266,122.088
|
||||
c-2.038,2.036-4.495,3.055-7.374,3.055s-5.337-1.019-7.374-3.055c-2.036-2.037-3.055-4.495-3.055-7.374
|
||||
c0-2.878,1.018-5.336,3.055-7.373c2.038-2.037,4.495-3.056,7.374-3.056s5.337,1.019,7.374,3.056
|
||||
c2.036,2.037,3.055,4.495,3.055,7.373C79.321,117.593,78.303,120.051,76.266,122.088z M79.322,73H48.036v-2.444
|
||||
c0.108-0.543,0.353-1.141,0.733-1.792l15.887-15.888c0.434-0.379,1.032-0.625,1.792-0.733h12.874V73z M149.266,122.088
|
||||
c-2.037,2.036-4.494,3.055-7.373,3.055s-5.336-1.019-7.373-3.055c-2.037-2.037-3.057-4.495-3.057-7.374
|
||||
c0-2.878,1.02-5.336,3.057-7.373s4.494-3.056,7.373-3.056s5.336,1.019,7.373,3.056c2.036,2.037,3.055,4.495,3.055,7.373
|
||||
C152.32,117.593,151.303,120.051,149.266,122.088z M162.75,59.964c0,0.761-0.244,1.386-0.732,1.874
|
||||
c-0.49,0.489-1.115,0.733-1.875,0.733h-18.25v18.25c0,0.761-0.244,1.385-0.732,1.874c-0.489,0.488-1.113,0.732-1.874,0.732h-15.644
|
||||
c-0.76,0-1.385-0.244-1.873-0.732c-0.49-0.489-0.733-1.113-0.733-1.874v-18.25h-18.25c-0.761,0-1.385-0.244-1.874-0.733
|
||||
c-0.488-0.488-0.733-1.113-0.733-1.874V44.321c0-0.761,0.244-1.385,0.733-1.874c0.489-0.488,1.113-0.733,1.874-0.733h18.25v-18.25
|
||||
c0-0.76,0.243-1.385,0.733-1.874c0.488-0.488,1.113-0.732,1.873-0.732h15.644c0.761,0,1.385,0.244,1.874,0.732
|
||||
c0.488,0.489,0.732,1.114,0.732,1.874v18.25h18.25c0.76,0,1.385,0.245,1.875,0.733c0.488,0.489,0.732,1.113,0.732,1.874V59.964z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.7 KiB |
22
svgs/fa/anchor16.svg
Executable file
|
|
@ -0,0 +1,22 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 16.0.4, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="216px" height="146px" viewBox="0 0 216 146" enable-background="new 0 0 216 146" xml:space="preserve">
|
||||
<path d="M180.266,95.242c-0.488-0.489-1.113-0.733-1.873-0.733h-28.679c-1.194,0-2.009,0.543-2.444,1.63
|
||||
c-0.435,1.033-0.244,1.983,0.569,2.853l8.147,8.146c-3.639,4.943-8.785,9.111-15.438,12.507c-6.653,3.395-14.026,5.635-22.12,6.722
|
||||
V73.652h15.643c1.412,0,2.635-0.517,3.668-1.548c1.031-1.031,1.547-2.254,1.547-3.666V58.009c0-1.412-0.516-2.634-1.547-3.666
|
||||
c-1.033-1.032-2.256-1.548-3.668-1.548h-15.643v-13.28c3.15-1.847,5.676-4.359,7.577-7.536c1.901-3.178,2.853-6.667,2.853-10.47
|
||||
c0-5.757-2.037-10.673-6.111-14.746c-4.073-4.074-8.988-6.111-14.746-6.111S97.327,2.689,93.253,6.763
|
||||
c-4.073,4.073-6.11,8.989-6.11,14.746c0,3.803,0.951,7.292,2.852,10.47c1.901,3.177,4.427,5.689,7.577,7.536v13.28H81.929
|
||||
c-1.413,0-2.635,0.516-3.667,1.548c-1.032,1.032-1.548,2.254-1.548,3.666v10.429c0,1.412,0.516,2.635,1.548,3.666
|
||||
c1.033,1.032,2.255,1.548,3.667,1.548h15.643v52.714c-8.093-1.087-15.467-3.327-22.12-6.722c-6.653-3.396-11.8-7.564-15.439-12.507
|
||||
l8.147-8.146c0.814-0.87,1.005-1.82,0.57-2.853c-0.434-1.087-1.249-1.63-2.444-1.63H37.607c-0.761,0-1.386,0.244-1.874,0.733
|
||||
C35.245,95.73,35,96.355,35,97.116v28.679c0,1.193,0.543,2.009,1.629,2.443c0.435,0.108,0.761,0.162,0.978,0.162
|
||||
c0.761,0,1.385-0.244,1.874-0.731l7.577-7.577c6.463,7.766,15.113,13.918,25.949,18.453s22.5,6.804,34.993,6.804
|
||||
c12.492,0,24.156-2.269,34.992-6.804s19.486-10.686,25.949-18.453l7.578,7.577c0.543,0.487,1.166,0.731,1.873,0.731
|
||||
c0.217,0,0.543-0.054,0.979-0.162c1.086-0.434,1.629-1.25,1.629-2.443V97.116C181,96.355,180.755,95.73,180.266,95.242z
|
||||
M111.666,25.175c-1.031,1.032-2.253,1.549-3.666,1.549s-2.635-0.517-3.667-1.549c-1.032-1.031-1.548-2.254-1.548-3.666
|
||||
c0-1.412,0.516-2.634,1.548-3.666c1.033-1.032,2.255-1.548,3.667-1.548s2.635,0.516,3.666,1.548
|
||||
c1.032,1.032,1.549,2.254,1.549,3.666C113.215,22.921,112.698,24.144,111.666,25.175z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.3 KiB |
28
svgs/fa/android4.svg
Executable file
|
|
@ -0,0 +1,28 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 16.0.4, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="216px" height="146px" viewBox="0 0 216 146" enable-background="new 0 0 216 146" xml:space="preserve">
|
||||
<g>
|
||||
<path d="M59.034,49.128c-2.335,0-4.319,0.814-5.948,2.444c-1.629,1.63-2.444,3.585-2.444,5.866v35.035
|
||||
c0,2.334,0.815,4.316,2.444,5.946s3.612,2.444,5.947,2.444c2.336,0,4.305-0.814,5.907-2.444c1.603-1.63,2.404-3.612,2.404-5.946
|
||||
V57.438c0-2.282-0.815-4.237-2.444-5.866C63.271,49.943,61.315,49.128,59.034,49.128z"/>
|
||||
<path d="M70.605,104.938c0,2.498,0.869,4.616,2.607,6.354c1.738,1.737,3.856,2.606,6.355,2.606h6.029l0.082,18.494
|
||||
c0,2.336,0.815,4.317,2.444,5.947s3.585,2.444,5.866,2.444c2.336,0,4.318-0.814,5.948-2.444s2.444-3.611,2.444-5.947v-18.494
|
||||
h11.243v18.494c0,2.336,0.814,4.317,2.443,5.947c1.631,1.63,3.613,2.444,5.949,2.444c2.334,0,4.316-0.814,5.946-2.444
|
||||
c1.629-1.63,2.442-3.611,2.442-5.947v-18.494h6.111c2.443,0,4.535-0.868,6.273-2.606s2.607-3.856,2.607-6.354V50.676H70.605
|
||||
V104.938z"/>
|
||||
<path d="M126.494,17.68l5.783-10.673c0.381-0.706,0.244-1.249-0.407-1.629c-0.706-0.326-1.249-0.163-1.629,0.489l-5.866,10.754
|
||||
c-5.16-2.281-10.618-3.422-16.376-3.422c-5.757,0-11.216,1.141-16.376,3.422L85.757,5.867c-0.379-0.652-0.923-0.815-1.629-0.489
|
||||
c-0.652,0.38-0.787,0.923-0.407,1.629l5.785,10.673c-5.867,2.987-10.537,7.156-14.014,12.506
|
||||
c-3.476,5.35-5.214,11.203-5.214,17.557h75.363c0-6.354-1.738-12.207-5.215-17.557S132.307,20.667,126.494,17.68z M93.049,33.2
|
||||
c-0.624,0.625-1.371,0.937-2.24,0.937s-1.602-0.312-2.2-0.937c-0.597-0.624-0.896-1.371-0.896-2.24s0.299-1.616,0.896-2.241
|
||||
c0.597-0.625,1.331-0.937,2.2-0.937c0.868,0,1.615,0.312,2.24,0.937s0.937,1.372,0.937,2.241S93.674,32.575,93.049,33.2z
|
||||
M127.391,33.2c-0.598,0.625-1.332,0.937-2.201,0.937s-1.615-0.312-2.239-0.937c-0.625-0.624-0.937-1.371-0.937-2.24
|
||||
s0.312-1.616,0.937-2.241c0.624-0.625,1.37-0.937,2.239-0.937s1.603,0.312,2.201,0.937c0.596,0.625,0.896,1.372,0.896,2.241
|
||||
S127.988,32.575,127.391,33.2z"/>
|
||||
<path d="M162.912,51.531c-1.629-1.602-3.611-2.403-5.947-2.403c-2.281,0-4.236,0.801-5.865,2.403
|
||||
c-1.63,1.603-2.445,3.572-2.445,5.907v35.035c0,2.334,0.815,4.316,2.445,5.946c1.629,1.63,3.584,2.444,5.865,2.444
|
||||
c2.336,0,4.318-0.814,5.947-2.444c1.63-1.63,2.445-3.612,2.445-5.946V57.438C165.357,55.103,164.542,53.134,162.912,51.531z"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.6 KiB |
10
svgs/fa/angle.svg
Executable file
|
|
@ -0,0 +1,10 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 16.0.4, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="216px" height="146px" viewBox="0 0 216 146" enable-background="new 0 0 216 146" xml:space="preserve">
|
||||
<path d="M98.875,73l32.02-32.019c0.543-0.543,0.814-1.168,0.814-1.874s-0.271-1.331-0.814-1.873l-4.074-4.074
|
||||
c-0.543-0.543-1.168-0.815-1.873-0.815c-0.706,0-1.331,0.272-1.874,0.815L85.107,71.126c-0.543,0.543-0.814,1.168-0.814,1.874
|
||||
s0.271,1.331,0.814,1.874l37.966,37.966c0.543,0.544,1.168,0.815,1.874,0.815c0.705,0,1.33-0.271,1.873-0.815l4.074-4.072
|
||||
c0.543-0.543,0.814-1.168,0.814-1.875c0-0.705-0.271-1.33-0.814-1.873L98.875,73z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 918 B |
10
svgs/fa/angle1.svg
Executable file
|
|
@ -0,0 +1,10 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 16.0.4, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="216px" height="146px" viewBox="0 0 216 146" enable-background="new 0 0 216 146" xml:space="preserve">
|
||||
<path d="M147.841,54.179l-4.073-4.073c-0.543-0.544-1.168-0.815-1.875-0.815c-0.705,0-1.33,0.271-1.873,0.815L108,82.125
|
||||
L75.981,50.107c-0.543-0.544-1.168-0.815-1.874-0.815s-1.331,0.271-1.874,0.815L68.16,54.18c-0.544,0.543-0.815,1.168-0.815,1.874
|
||||
s0.272,1.331,0.815,1.874l37.966,37.967c0.543,0.543,1.168,0.814,1.874,0.814s1.33-0.271,1.873-0.814l37.968-37.967
|
||||
c0.543-0.543,0.813-1.168,0.813-1.874C148.654,55.348,148.384,54.723,147.841,54.179z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 931 B |
10
svgs/fa/angle2.svg
Executable file
|
|
@ -0,0 +1,10 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 16.0.4, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="216px" height="146px" viewBox="0 0 216 146" enable-background="new 0 0 216 146" xml:space="preserve">
|
||||
<path d="M130.895,71.125L92.928,33.159c-0.543-0.543-1.168-0.815-1.874-0.815c-0.706,0-1.331,0.272-1.874,0.815l-4.073,4.074
|
||||
c-0.544,0.543-0.815,1.167-0.815,1.874s0.271,1.331,0.815,1.874L117.126,73l-32.019,32.02c-0.544,0.543-0.815,1.168-0.815,1.873
|
||||
c0,0.707,0.271,1.332,0.815,1.875l4.073,4.072c0.543,0.544,1.168,0.814,1.874,0.814c0.706,0,1.331-0.271,1.874-0.814l37.966-37.966
|
||||
c0.543-0.543,0.814-1.168,0.814-1.874S131.438,71.669,130.895,71.125z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 933 B |
19
svgs/fa/apple22.svg
Executable file
|
|
@ -0,0 +1,19 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 16.0.4, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="216px" height="146px" viewBox="0 0 216 146" enable-background="new 0 0 216 146" xml:space="preserve">
|
||||
<g>
|
||||
<path d="M151.874,93.938c-3.748-5.377-5.621-11.435-5.621-18.168c0-6.138,1.767-11.761,5.295-16.866
|
||||
c1.901-2.77,4.998-5.974,9.289-9.614c-2.825-3.475-5.649-6.191-8.474-8.147c-5.106-3.53-10.891-5.295-17.354-5.295
|
||||
c-3.856,0-8.555,0.923-14.094,2.771c-5.323,1.847-9.207,2.771-11.651,2.771c-1.847,0-5.594-0.814-11.243-2.444
|
||||
c-5.703-1.63-10.51-2.444-14.421-2.444c-9.342,0-17.055,3.911-23.138,11.732c-6.138,7.93-9.207,18.087-9.207,30.471
|
||||
c0,13.144,3.993,26.804,11.977,40.981c8.092,14.067,16.267,21.102,24.523,21.102c2.77,0,6.355-0.924,10.754-2.771
|
||||
c4.4-1.791,8.256-2.688,11.57-2.688c3.53,0,7.631,0.869,12.302,2.607c4.942,1.736,8.745,2.605,11.406,2.605
|
||||
c6.952,0,13.932-5.323,20.938-15.969c4.562-6.789,7.903-13.578,10.021-20.368C159.912,102.737,155.622,99.314,151.874,93.938z"/>
|
||||
<path d="M124.172,30.96c3.422-3.422,5.948-7.17,7.578-11.243c1.574-4.074,2.361-7.768,2.361-11.081
|
||||
c0-0.217-0.012-0.489-0.041-0.815c-0.025-0.326-0.039-0.597-0.039-0.814c-0.055-0.163-0.123-0.462-0.204-0.896
|
||||
c-0.081-0.434-0.149-0.733-0.204-0.896c-9.559,2.228-16.348,6.247-20.368,12.059c-4.073,5.866-6.192,12.845-6.355,20.938
|
||||
c3.639-0.326,6.463-0.787,8.473-1.385C118.307,35.849,121.238,33.893,124.172,30.96z"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.7 KiB |
17
svgs/fa/archive15.svg
Executable file
|
|
@ -0,0 +1,17 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 16.0.4, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="216px" height="146px" viewBox="0 0 216 146" enable-background="new 0 0 216 146" xml:space="preserve">
|
||||
<g>
|
||||
<path d="M165.357,46.929H50.644c-1.413,0-2.635,0.516-3.667,1.548c-1.032,1.032-1.548,2.254-1.548,3.666v78.214
|
||||
c0,1.412,0.516,2.635,1.548,3.666c1.032,1.032,2.254,1.549,3.667,1.549h114.713c1.412,0,2.634-0.517,3.666-1.549
|
||||
c1.031-1.031,1.547-2.254,1.547-3.666V52.143c0-1.413-0.514-2.634-1.547-3.666C167.992,47.445,166.77,46.929,165.357,46.929z
|
||||
M122.094,71.452C121.062,72.484,119.84,73,118.428,73H97.571c-1.412,0-2.634-0.516-3.666-1.548
|
||||
c-1.032-1.032-1.548-2.254-1.548-3.667c0-1.412,0.516-2.634,1.548-3.666c1.032-1.032,2.254-1.548,3.666-1.548h20.859
|
||||
c1.411,0,2.633,0.516,3.666,1.548c1.031,1.032,1.547,2.254,1.547,3.666C123.643,69.198,123.126,70.42,122.094,71.452z"/>
|
||||
<path d="M174.238,11.977c-1.032-1.032-2.254-1.548-3.666-1.548H45.429c-1.412,0-2.634,0.516-3.666,1.548
|
||||
c-1.032,1.032-1.548,2.254-1.548,3.666V36.5c0,1.412,0.516,2.634,1.548,3.666c1.032,1.032,2.254,1.548,3.666,1.548H170.57
|
||||
c1.412,0,2.635-0.516,3.668-1.548c1.031-1.032,1.547-2.254,1.547-3.666V15.643C175.785,14.23,175.27,13.009,174.238,11.977z"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.5 KiB |
10
svgs/fa/arrow459.svg
Executable file
|
|
@ -0,0 +1,10 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 16.0.4, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="216px" height="146px" viewBox="0 0 216 146" enable-background="new 0 0 216 146" xml:space="preserve">
|
||||
<path d="M147.841,88.073l-37.968-37.966c-0.543-0.543-1.167-0.815-1.873-0.815s-1.331,0.272-1.874,0.815L68.16,88.073
|
||||
c-0.544,0.544-0.815,1.168-0.815,1.874s0.272,1.331,0.815,1.874l4.073,4.073c0.543,0.543,1.168,0.814,1.874,0.814
|
||||
s1.331-0.271,1.874-0.814L108,63.875l32.02,32.02c0.543,0.543,1.168,0.813,1.873,0.813c0.707,0,1.332-0.271,1.875-0.813l4.073-4.074
|
||||
c0.543-0.543,0.813-1.168,0.813-1.874S148.384,88.616,147.841,88.073z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 913 B |
22
svgs/fa/arrow460.svg
Executable file
|
|
@ -0,0 +1,22 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 16.0.4, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="216px" height="146px" viewBox="0 0 216 146" enable-background="new 0 0 216 146" xml:space="preserve">
|
||||
<g>
|
||||
<path d="M162.18,41.592c-5.595-9.586-13.185-17.176-22.771-22.771c-9.588-5.595-20.055-8.392-31.408-8.392
|
||||
c-11.352,0-21.822,2.797-31.408,8.392c-9.587,5.594-17.177,13.184-22.772,22.771C48.225,51.179,45.428,61.649,45.428,73
|
||||
c0,11.352,2.798,21.82,8.392,31.408c5.595,9.585,13.185,17.176,22.772,22.771c9.587,5.595,20.056,8.392,31.408,8.392
|
||||
c11.352,0,21.822-2.797,31.408-8.392c9.586-5.594,17.176-13.185,22.771-22.771c5.594-9.587,8.391-20.057,8.391-31.408
|
||||
C170.57,61.648,167.773,51.178,162.18,41.592z M146.374,95.242c-3.965,6.789-9.342,12.167-16.132,16.132
|
||||
c-6.789,3.965-14.203,5.946-22.242,5.946c-8.038,0-15.452-1.981-22.242-5.946c-6.789-3.965-12.166-9.343-16.131-16.132
|
||||
C65.661,88.453,63.679,81.039,63.679,73s1.983-15.453,5.948-22.242c3.964-6.789,9.342-12.167,16.131-16.132
|
||||
S99.961,28.679,108,28.679s15.453,1.982,22.242,5.947c6.79,3.965,12.167,9.343,16.132,16.132
|
||||
c3.965,6.789,5.946,14.203,5.946,22.242S150.339,88.453,146.374,95.242z"/>
|
||||
<path d="M136.678,62.573h-28.679V46.93c0-0.706-0.258-1.317-0.774-1.833c-0.516-0.516-1.127-0.774-1.833-0.774
|
||||
c-0.76,0-1.385,0.244-1.874,0.733L77.447,71.127c-0.488,0.489-0.733,1.113-0.733,1.874s0.244,1.385,0.733,1.874l25.99,25.989
|
||||
c0.652,0.544,1.304,0.814,1.956,0.814c0.76,0,1.385-0.245,1.874-0.733c0.489-0.488,0.733-1.112,0.733-1.873V83.429h28.68
|
||||
c0.705,0,1.316-0.257,1.832-0.774c0.516-0.516,0.774-1.127,0.774-1.832V65.179c0-0.706-0.259-1.318-0.774-1.832
|
||||
C137.995,62.831,137.384,62.573,136.678,62.573z"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.9 KiB |
16
svgs/fa/arrow461.svg
Executable file
|
|
@ -0,0 +1,16 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 16.0.4, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="216px" height="146px" viewBox="0 0 216 146" enable-background="new 0 0 216 146" xml:space="preserve">
|
||||
<path d="M162.18,41.592c-5.595-9.586-13.185-17.176-22.771-22.771c-9.588-5.595-20.055-8.392-31.408-8.392
|
||||
c-11.352,0-21.822,2.797-31.408,8.392c-9.587,5.594-17.177,13.184-22.772,22.771C48.225,51.179,45.428,61.649,45.428,73
|
||||
c0,11.352,2.798,21.82,8.392,31.408c5.595,9.585,13.185,17.176,22.772,22.771c9.587,5.595,20.056,8.392,31.408,8.392
|
||||
c11.352,0,21.822-2.797,31.408-8.392c9.586-5.594,17.176-13.185,22.771-22.771c5.594-9.587,8.391-20.057,8.391-31.408
|
||||
C170.57,61.648,167.773,51.178,162.18,41.592z M148.654,76.666l-7.413,7.414l-29.493,29.492c-0.979,0.979-2.2,1.468-3.667,1.468
|
||||
c-1.466,0-2.688-0.489-3.666-1.468l-7.414-7.414c-1.032-1.03-1.548-2.254-1.548-3.666c0-1.411,0.516-2.633,1.548-3.666L112.4,83.429
|
||||
H71.5c-1.412,0-2.634-0.517-3.666-1.548c-1.032-1.032-1.548-2.255-1.548-3.667V67.785c0-1.412,0.516-2.634,1.548-3.666
|
||||
c1.032-1.032,2.254-1.548,3.666-1.548h40.9L97.001,47.173c-0.978-0.978-1.467-2.2-1.467-3.666c0-1.467,0.489-2.688,1.467-3.667
|
||||
l7.414-7.414c0.978-0.978,2.2-1.466,3.666-1.466c1.468,0,2.688,0.488,3.667,1.466l29.493,29.494l7.413,7.414
|
||||
c0.979,0.978,1.468,2.199,1.468,3.666S149.633,75.688,148.654,76.666z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.6 KiB |
12
svgs/fa/arrow462.svg
Executable file
|
|
@ -0,0 +1,12 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 16.0.4, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="216px" height="146px" viewBox="0 0 216 146" enable-background="new 0 0 216 146" xml:space="preserve">
|
||||
<path d="M165.316,60.412c-1.766-2.037-4.06-3.055-6.885-3.055h-57.355l23.871-23.872c2.064-2.063,3.096-4.535,3.096-7.414
|
||||
c0-2.878-1.031-5.35-3.096-7.414l-6.11-6.029c-2.063-2.063-4.508-3.096-7.332-3.096c-2.879,0-5.351,1.032-7.414,3.096L51.052,65.586
|
||||
c-2.01,2.118-3.015,4.59-3.015,7.414c0,2.879,1.005,5.323,3.015,7.332l53.039,53.121c2.118,2.01,4.589,3.016,7.414,3.016
|
||||
c2.878,0,5.322-1.006,7.332-3.016l6.11-6.191c2.064-1.955,3.096-4.399,3.096-7.332c0-2.934-1.031-5.379-3.096-7.334l-23.871-23.953
|
||||
h57.355c2.825,0,5.119-1.018,6.885-3.055c1.765-2.037,2.647-4.494,2.647-7.373V67.786C167.964,64.907,167.081,62.449,165.316,60.412
|
||||
z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.1 KiB |
16
svgs/fa/arrow463.svg
Executable file
|
|
@ -0,0 +1,16 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 16.0.4, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="216px" height="146px" viewBox="0 0 216 146" enable-background="new 0 0 216 146" xml:space="preserve">
|
||||
<path d="M162.18,41.592c-5.595-9.586-13.185-17.176-22.771-22.771c-9.588-5.595-20.055-8.392-31.408-8.392
|
||||
c-11.352,0-21.822,2.797-31.408,8.392c-9.587,5.594-17.177,13.184-22.772,22.771C48.225,51.179,45.428,61.649,45.428,73
|
||||
c0,11.352,2.798,21.82,8.392,31.408c5.595,9.585,13.185,17.176,22.772,22.771c9.587,5.595,20.056,8.392,31.408,8.392
|
||||
c11.352,0,21.822-2.797,31.408-8.392c9.586-5.594,17.176-13.185,22.771-22.771c5.594-9.587,8.391-20.057,8.391-31.408
|
||||
C170.57,61.648,167.773,51.178,162.18,41.592z M148.573,76.585l-7.414,7.414c-1.031,1.032-2.255,1.548-3.666,1.548
|
||||
c-1.412,0-2.634-0.516-3.666-1.548L118.43,68.601V109.5c0,1.412-0.518,2.634-1.549,3.666s-2.254,1.548-3.666,1.548h-10.429
|
||||
c-1.412,0-2.634-0.516-3.666-1.548c-1.032-1.032-1.548-2.254-1.548-3.666V68.601L82.174,83.999c-0.979,0.978-2.2,1.466-3.667,1.466
|
||||
c-1.467,0-2.689-0.488-3.667-1.466l-7.414-7.414c-0.977-0.978-1.466-2.2-1.466-3.667c0-1.466,0.488-2.688,1.466-3.666L96.92,39.759
|
||||
l7.414-7.414c0.978-0.978,2.2-1.467,3.666-1.467c1.467,0,2.689,0.489,3.666,1.467l7.415,7.414l29.492,29.493
|
||||
c0.979,0.978,1.467,2.2,1.467,3.666C150.04,74.385,149.552,75.607,148.573,76.585z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.6 KiB |
16
svgs/fa/arrow464.svg
Executable file
|
|
@ -0,0 +1,16 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 16.0.4, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="216px" height="146px" viewBox="0 0 216 146" enable-background="new 0 0 216 146" xml:space="preserve">
|
||||
<path d="M162.18,41.592c-5.595-9.586-13.185-17.176-22.771-22.771c-9.588-5.595-20.055-8.392-31.408-8.392
|
||||
c-11.352,0-21.822,2.797-31.408,8.392c-9.587,5.594-17.177,13.184-22.772,22.771C48.225,51.179,45.428,61.649,45.428,73
|
||||
c0,11.352,2.798,21.82,8.392,31.408c5.595,9.585,13.185,17.176,22.772,22.771c9.587,5.595,20.056,8.392,31.408,8.392
|
||||
c11.352,0,21.822-2.797,31.408-8.392c9.586-5.594,17.176-13.185,22.771-22.771c5.594-9.587,8.391-20.057,8.391-31.408
|
||||
C170.57,61.648,167.773,51.178,162.18,41.592z M148.573,76.748l-29.492,29.493l-7.415,7.414c-0.977,0.978-2.199,1.466-3.666,1.466
|
||||
c-1.466,0-2.688-0.488-3.666-1.466l-7.414-7.414L67.426,76.748c-0.977-0.979-1.466-2.2-1.466-3.667c0-1.466,0.488-2.688,1.466-3.666
|
||||
l7.414-7.414c1.033-1.032,2.254-1.548,3.667-1.548s2.635,0.516,3.667,1.548l15.398,15.397V36.5c0-1.412,0.516-2.635,1.548-3.666
|
||||
c1.032-1.032,2.254-1.549,3.666-1.549h10.429c1.412,0,2.635,0.517,3.666,1.549c1.031,1.031,1.549,2.254,1.549,3.666v40.898
|
||||
l15.397-15.397c0.978-0.978,2.198-1.467,3.666-1.467c1.467,0,2.688,0.489,3.666,1.467l7.414,7.414
|
||||
c0.979,0.978,1.467,2.2,1.467,3.666C150.04,74.548,149.552,75.77,148.573,76.748z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.6 KiB |
11
svgs/fa/arrow465.svg
Executable file
|
|
@ -0,0 +1,11 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 16.0.4, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="216px" height="146px" viewBox="0 0 216 146" enable-background="new 0 0 216 146" xml:space="preserve">
|
||||
<path d="M164.95,65.668l-53.039-53.039c-2.063-2.064-4.535-3.096-7.414-3.096c-2.825,0-5.269,1.032-7.333,3.096l-6.11,6.11
|
||||
c-2.064,1.956-3.096,4.4-3.096,7.333s1.032,5.377,3.096,7.333l23.872,23.953H57.568c-2.824,0-5.119,1.018-6.884,3.055
|
||||
s-2.648,4.495-2.648,7.373v10.429c0,2.879,0.883,5.336,2.648,7.373s4.06,3.055,6.884,3.055h57.357l-23.872,23.873
|
||||
c-2.064,2.062-3.096,4.534-3.096,7.413s1.032,5.351,3.096,7.414l6.11,6.11c2.119,2.01,4.563,3.015,7.333,3.015
|
||||
c2.825,0,5.297-1.005,7.414-3.015l53.039-53.039c2.01-2.01,3.016-4.48,3.016-7.414C167.965,70.013,166.959,67.568,164.95,65.668z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1 KiB |
12
svgs/fa/arrow466.svg
Executable file
|
|
@ -0,0 +1,12 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 16.0.4, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="216px" height="146px" viewBox="0 0 216 146" enable-background="new 0 0 216 146" xml:space="preserve">
|
||||
<path d="M168.452,62.53l-6.109-6.11c-2.118-2.01-4.59-3.015-7.413-3.015c-2.88,0-5.324,1.005-7.334,3.015l-23.953,23.953V23.017
|
||||
c0-2.825-1.033-5.269-3.097-7.333s-4.508-3.096-7.332-3.096h-10.429c-2.824,0-5.269,1.033-7.332,3.096
|
||||
c-2.065,2.064-3.096,4.508-3.096,7.333v57.356L68.404,56.42c-2.01-2.01-4.454-3.015-7.333-3.015c-2.824,0-5.296,1.005-7.414,3.015
|
||||
l-6.029,6.11c-2.064,2.063-3.096,4.536-3.096,7.414c0,2.934,1.033,5.378,3.096,7.333l53.039,53.119
|
||||
c2.01,2.011,4.454,3.016,7.333,3.016c2.824,0,5.296-1.005,7.413-3.016l53.039-53.119c2.01-2.01,3.016-4.454,3.016-7.333
|
||||
C171.468,67.12,170.462,64.649,168.452,62.53z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.1 KiB |
11
svgs/fa/arrow467.svg
Executable file
|
|
@ -0,0 +1,11 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 16.0.4, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="216px" height="146px" viewBox="0 0 216 146" enable-background="new 0 0 216 146" xml:space="preserve">
|
||||
<path d="M168.452,69.089L115.413,16.05c-2.009-2.01-4.479-3.015-7.413-3.015c-2.987,0-5.432,1.005-7.333,3.015L47.628,69.089
|
||||
c-2.064,2.064-3.096,4.536-3.096,7.415c0,2.824,1.033,5.268,3.096,7.332l6.11,6.11c1.956,2.063,4.4,3.097,7.333,3.097
|
||||
c2.933,0,5.377-1.034,7.333-3.097l23.953-23.872v57.357c0,2.823,1.018,5.119,3.055,6.885c2.037,1.765,4.495,2.647,7.373,2.647
|
||||
h10.429c2.879,0,5.336-0.882,7.373-2.647s3.056-4.062,3.056-6.885V66.074l23.953,23.872c1.955,2.063,4.399,3.097,7.334,3.097
|
||||
c2.877,0,5.35-1.034,7.413-3.097l6.109-6.11c2.01-2.119,3.016-4.562,3.016-7.332C171.468,73.679,170.462,71.208,168.452,69.089z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.1 KiB |
9
svgs/fa/arrowhead5.svg
Executable file
|
|
@ -0,0 +1,9 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 16.0.4, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="216px" height="146px" viewBox="0 0 216 146" enable-background="new 0 0 216 146" xml:space="preserve">
|
||||
<path d="M129.916,69.334l-36.5-36.5c-1.032-1.032-2.253-1.548-3.666-1.548s-2.635,0.516-3.667,1.548s-1.548,2.254-1.548,3.666v73
|
||||
c0,1.412,0.516,2.635,1.548,3.666c1.033,1.032,2.255,1.549,3.667,1.549s2.634-0.517,3.666-1.549l36.5-36.5
|
||||
c1.032-1.031,1.549-2.254,1.549-3.666S130.948,70.366,129.916,69.334z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 787 B |
17
svgs/fa/arrowhead6.svg
Executable file
|
|
@ -0,0 +1,17 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 16.0.4, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="216px" height="146px" viewBox="0 0 216 146" enable-background="new 0 0 216 146" xml:space="preserve">
|
||||
<g>
|
||||
<path d="M163.686,17.313c-4.588-4.589-10.115-6.884-16.578-6.884H68.893c-6.463,0-11.99,2.295-16.58,6.884
|
||||
c-4.589,4.59-6.884,10.117-6.884,16.58v78.214c0,6.463,2.295,11.99,6.884,16.58c4.59,4.59,10.117,6.885,16.58,6.885h78.214
|
||||
c6.463,0,11.99-2.295,16.578-6.885c4.59-4.59,6.885-10.117,6.885-16.58V33.893C170.57,27.43,168.275,21.902,163.686,17.313z
|
||||
M149.714,112.107c0,0.705-0.258,1.316-0.774,1.832c-0.516,0.516-1.127,0.773-1.832,0.773H68.893c-0.706,0-1.317-0.257-1.833-0.773
|
||||
s-0.774-1.127-0.774-1.832V33.892c0-0.706,0.258-1.317,0.774-1.833c0.516-0.515,1.127-0.774,1.833-0.774h78.214
|
||||
c0.707,0,1.318,0.258,1.834,0.774c0.515,0.516,0.772,1.127,0.772,1.833V112.107z"/>
|
||||
<path d="M112.236,49.128c-1.031-1.466-2.443-2.199-4.236-2.199c-1.792,0-3.204,0.733-4.236,2.199l-26.072,36.5
|
||||
c-1.249,1.685-1.385,3.478-0.407,5.378c0.923,1.901,2.471,2.852,4.644,2.852h52.141c2.174,0,3.722-0.951,4.646-2.852
|
||||
c0.978-1.902,0.843-3.693-0.409-5.378L112.236,49.128z"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.4 KiB |
11
svgs/fa/arrowheads.svg
Executable file
|
|
@ -0,0 +1,11 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 16.0.4, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="216px" height="146px" viewBox="0 0 216 146" enable-background="new 0 0 216 146" xml:space="preserve">
|
||||
<path d="M169.755,10.429c-0.705-0.326-1.573,0.027-2.606,1.059l-57.847,57.844c-0.434,0.435-0.788,0.951-1.059,1.548V13.034
|
||||
c0-1.412-0.353-2.281-1.059-2.607s-1.575,0.027-2.607,1.059L46.731,69.332c-1.032,1.032-1.548,2.254-1.548,3.666
|
||||
s0.516,2.635,1.548,3.666l57.846,57.846c1.032,1.033,1.901,1.387,2.607,1.061s1.059-1.195,1.059-2.607V75.117
|
||||
c0.272,0.543,0.625,1.061,1.059,1.548l57.847,57.847c1.033,1.032,1.901,1.386,2.606,1.06c0.707-0.326,1.06-1.195,1.06-2.607V13.036
|
||||
C170.814,11.624,170.462,10.755,169.755,10.429z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1,004 B |
16
svgs/fa/asterisk2.svg
Executable file
|
|
@ -0,0 +1,16 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 16.0.4, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="216px" height="146px" viewBox="0 0 216 146" enable-background="new 0 0 216 146" xml:space="preserve">
|
||||
<path d="M165.805,91.861c-0.734-2.797-2.349-4.902-4.848-6.314L139.285,73l21.672-12.547c2.499-1.412,4.115-3.516,4.848-6.314
|
||||
c0.733-2.797,0.394-5.445-1.019-7.943l-5.214-8.962c-1.412-2.499-3.516-4.115-6.314-4.848c-2.797-0.732-5.443-0.393-7.943,1.02
|
||||
L123.643,45.87V20.858c0-2.825-1.033-5.269-3.097-7.333s-4.508-3.096-7.332-3.096h-10.428c-2.825,0-5.269,1.033-7.333,3.096
|
||||
c-2.064,2.064-3.096,4.508-3.096,7.333V45.87L70.685,33.405c-2.499-1.413-5.147-1.753-7.944-1.02
|
||||
c-2.797,0.734-4.902,2.349-6.314,4.848l-5.214,8.962c-1.413,2.498-1.752,5.146-1.019,7.943c0.734,2.797,2.349,4.902,4.848,6.314
|
||||
L76.714,73L55.042,85.547c-2.499,1.412-4.115,3.516-4.848,6.314c-0.733,2.797-0.393,5.443,1.019,7.942l5.214,8.962
|
||||
c1.412,2.5,3.516,4.115,6.314,4.849c2.798,0.732,5.445,0.393,7.944-1.02l21.672-12.465v25.013c0,2.823,1.032,5.269,3.096,7.332
|
||||
c2.064,2.064,4.509,3.096,7.333,3.096h10.428c2.824,0,5.269-1.032,7.332-3.096c2.065-2.063,3.097-4.509,3.097-7.332V100.13
|
||||
l21.672,12.465c2.5,1.413,5.146,1.753,7.943,1.02c2.797-0.734,4.902-2.349,6.314-4.849l5.214-8.962
|
||||
C166.199,97.305,166.538,94.658,165.805,91.861z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.5 KiB |
17
svgs/fa/ban.svg
Executable file
|
|
@ -0,0 +1,17 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 16.0.4, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="216px" height="146px" viewBox="0 0 216 146" enable-background="new 0 0 216 146" xml:space="preserve">
|
||||
<path d="M165.602,48.558c-3.313-7.739-7.754-14.407-13.322-20.001c-5.565-5.594-12.221-10.049-19.961-13.362
|
||||
c-7.738-3.313-15.846-4.97-24.318-4.97c-8.473,0-16.58,1.658-24.32,4.97c-7.74,3.313-14.394,7.767-19.961,13.362
|
||||
c-5.567,5.594-10.008,12.262-13.321,20.001c-3.313,7.74-4.97,15.874-4.97,24.401c0,8.527,1.657,16.674,4.97,24.441
|
||||
c3.314,7.768,7.754,14.447,13.321,20.043c5.567,5.594,12.221,10.049,19.961,13.36c7.74,3.314,15.847,4.972,24.32,4.972
|
||||
c8.473,0,16.58-1.658,24.318-4.972c7.74-3.312,14.396-7.766,19.961-13.36c5.568-5.596,10.009-12.275,13.322-20.043
|
||||
c3.313-7.767,4.969-15.914,4.969-24.441C170.57,64.432,168.915,56.298,165.602,48.558z M70.93,97.318
|
||||
c-4.834-7.439-7.251-15.561-7.25-24.36c0-8.038,1.983-15.479,5.948-22.323c3.964-6.844,9.342-12.248,16.131-16.214
|
||||
c6.789-3.965,14.203-5.947,22.242-5.947c8.963,0,17.108,2.472,24.442,7.414L70.93,97.318z M148.816,90.273
|
||||
c-2.336,5.513-5.484,10.252-9.45,14.217s-8.677,7.129-14.136,9.49c-5.459,2.363-11.203,3.545-17.231,3.545
|
||||
c-8.69,0-16.756-2.416-24.197-7.252l61.431-61.349c4.727,7.278,7.088,15.29,7.088,24.034
|
||||
C152.32,78.988,151.152,84.759,148.816,90.273z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.6 KiB |
18
svgs/fa/bar10.svg
Executable file
|
|
@ -0,0 +1,18 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 16.0.4, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="216px" height="146px" viewBox="0 0 216 146" enable-background="new 0 0 216 146" xml:space="preserve">
|
||||
<g>
|
||||
<path d="M182.384,14.258c-2.553-2.553-5.62-3.829-9.206-3.829H42.821c-3.585,0-6.653,1.276-9.207,3.829
|
||||
c-2.553,2.553-3.829,5.621-3.829,9.206v99.071c0,3.585,1.276,6.654,3.829,9.207c2.554,2.553,5.622,3.829,9.207,3.829H173.18
|
||||
c3.584,0,6.652-1.276,9.205-3.829s3.83-5.622,3.83-9.207V23.464C186.215,19.879,184.938,16.811,182.384,14.258z M175.785,122.535
|
||||
c0,0.707-0.258,1.318-0.774,1.834c-0.516,0.515-1.127,0.773-1.833,0.773H42.821c-0.706,0-1.317-0.258-1.833-0.773
|
||||
c-0.516-0.518-0.774-1.127-0.774-1.834V23.464c0-0.706,0.257-1.316,0.774-1.833c0.516-0.515,1.127-0.773,1.833-0.773H173.18
|
||||
c0.705,0,1.316,0.257,1.832,0.773c0.516,0.517,0.773,1.127,0.773,1.833V122.535z"/>
|
||||
<rect x="50.643" y="83.429" width="20.857" height="31.285"/>
|
||||
<rect x="81.929" y="41.714" width="20.856" height="73"/>
|
||||
<rect x="113.215" y="62.571" width="20.855" height="52.143"/>
|
||||
<rect x="144.5" y="31.285" width="20.857" height="83.429"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.4 KiB |
24
svgs/fa/barcode2.svg
Executable file
|
|
@ -0,0 +1,24 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 16.0.4, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="216px" height="146px" viewBox="0 0 216 146" enable-background="new 0 0 216 146" xml:space="preserve">
|
||||
<g>
|
||||
<rect x="73.456" y="15.642" width="5.051" height="114.633"/>
|
||||
<rect x="63.19" y="15.642" width="2.525" height="114.633"/>
|
||||
<rect x="91.379" y="15.642" width="2.526" height="114.633"/>
|
||||
<rect x="86.246" y="15.642" width="2.526" height="114.633"/>
|
||||
<rect x="42.659" y="15.642" width="2.607" height="114.633"/>
|
||||
<rect x="50.398" y="15.642" width="2.526" height="114.633"/>
|
||||
<rect x="35" y="15.642" width="5.133" height="114.715"/>
|
||||
<rect x="96.512" y="15.642" width="2.526" height="114.633"/>
|
||||
<rect x="147.678" y="15.642" width="5.133" height="114.633"/>
|
||||
<rect x="160.551" y="15.642" width="7.658" height="114.633"/>
|
||||
<rect x="170.734" y="15.642" width="2.607" height="114.633"/>
|
||||
<rect x="175.867" y="15.642" width="5.133" height="114.715"/>
|
||||
<rect x="129.754" y="15.642" width="5.133" height="114.633"/>
|
||||
<rect x="140.02" y="15.642" width="5.133" height="114.633"/>
|
||||
<rect x="119.488" y="15.642" width="5.133" height="114.633"/>
|
||||
<rect x="106.696" y="15.642" width="5.133" height="114.633"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.5 KiB |
12
svgs/fa/beaker2.svg
Executable file
|
|
@ -0,0 +1,12 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 16.0.4, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="216px" height="146px" viewBox="0 0 216 146" enable-background="new 0 0 216 146" xml:space="preserve">
|
||||
<path d="M164.624,117.973l-40.983-64.606V20.858h5.215c1.412,0,2.635-0.517,3.666-1.549c1.033-1.031,1.549-2.254,1.549-3.666
|
||||
c0-1.412-0.516-2.634-1.549-3.666c-1.031-1.032-2.254-1.548-3.666-1.548H87.142c-1.413,0-2.635,0.516-3.667,1.548
|
||||
c-1.032,1.032-1.548,2.254-1.548,3.666c0,1.412,0.516,2.635,1.548,3.666c1.033,1.032,2.255,1.549,3.667,1.549h5.214v32.508
|
||||
l-40.981,64.606c-3.041,4.836-3.625,8.978-1.751,12.426c1.874,3.449,5.69,5.174,11.447,5.174h93.859
|
||||
c5.756,0,9.571-1.725,11.445-5.174C168.249,126.95,167.665,122.809,164.624,117.973z M78.995,93.857l22.161-34.952l1.629-2.526
|
||||
v-3.014V20.857h10.428v32.508v3.014l1.629,2.526l22.161,34.952H78.995z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.1 KiB |
9
svgs/fa/beer9.svg
Executable file
|
|
@ -0,0 +1,9 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 16.0.4, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="216px" height="146px" viewBox="0 0 216 146" enable-background="new 0 0 216 146" xml:space="preserve">
|
||||
<path d="M162.748,99.071V33.892l5.215-2.606l-2.607-15.644H87.141l-2.606,10.429H45.428L42.821,36.5l5.215,5.214v26.072
|
||||
c0,8.636,3.055,16.009,9.165,22.119c6.11,6.11,13.484,9.166,22.12,9.166H89.75l-10.429,15.643v15.644h93.859v-15.644L162.748,99.071
|
||||
z M89.75,78.214H79.322c-2.879,0-5.336-1.018-7.373-3.055c-2.037-2.037-3.056-4.495-3.056-7.373V46.929H89.75V78.214z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 849 B |
17
svgs/fa/bell13.svg
Executable file
|
|
@ -0,0 +1,17 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 16.0.4, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="216px" height="146px" viewBox="0 0 216 146" enable-background="new 0 0 216 146" xml:space="preserve">
|
||||
<path d="M152.4,82.328c-5.267-12.845-7.901-26.383-7.901-40.614c0-8.962-2.606-16.077-7.819-21.346
|
||||
c-5.216-5.269-12.386-8.447-21.511-9.533c0.433-0.977,0.651-1.982,0.651-3.014c0-2.173-0.76-4.021-2.281-5.541
|
||||
c-1.52-1.521-3.367-2.281-5.54-2.281c-2.172,0-4.019,0.76-5.54,2.281c-1.521,1.521-2.281,3.368-2.281,5.541
|
||||
c0,1.032,0.217,2.036,0.652,3.014c-9.125,1.087-16.295,4.264-21.509,9.533C74.107,25.637,71.5,32.752,71.5,41.714
|
||||
c0,14.231-2.634,27.769-7.903,40.614c-5.269,12.846-13.063,23.642-23.383,32.387c0,2.824,1.032,5.268,3.096,7.332
|
||||
s4.508,3.096,7.333,3.096h36.5c0,5.758,2.036,10.674,6.11,14.747c4.074,4.073,8.99,6.11,14.747,6.11
|
||||
c5.758,0,10.674-2.037,14.746-6.11c4.074-4.073,6.111-8.989,6.111-14.747h36.5c2.824,0,5.27-1.031,7.332-3.096
|
||||
c2.064-2.064,3.096-4.508,3.096-7.332C165.467,105.97,157.672,95.174,152.4,82.328z M108,139.482c-3.965,0-7.347-1.398-10.144-4.195
|
||||
c-2.797-2.798-4.196-6.18-4.196-10.145c0-0.869,0.435-1.304,1.304-1.304c0.869,0,1.304,0.435,1.304,1.304
|
||||
c0,3.205,1.154,5.961,3.462,8.27c2.309,2.309,5.065,3.463,8.27,3.463c0.869,0,1.305,0.436,1.305,1.304
|
||||
C109.305,139.048,108.869,139.482,108,139.482z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.6 KiB |
32
svgs/fa/bitbucket.svg
Executable file
|
|
@ -0,0 +1,32 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 16.0.4, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="216px" height="146px" viewBox="0 0 216 146" enable-background="new 0 0 216 146" xml:space="preserve">
|
||||
<g>
|
||||
<path d="M163.686,17.313c-4.588-4.589-10.115-6.884-16.578-6.884H68.893c-6.463,0-11.99,2.295-16.58,6.884
|
||||
c-4.589,4.59-6.884,10.117-6.884,16.58v78.214c0,6.463,2.295,11.99,6.884,16.58c4.59,4.59,10.117,6.885,16.58,6.885h78.214
|
||||
c6.463,0,11.99-2.295,16.578-6.885c4.59-4.59,6.885-10.117,6.885-16.58V33.893C170.57,27.43,168.275,21.902,163.686,17.313z
|
||||
M138.919,96.342c-0.299,1.059-0.446,1.779-0.446,2.159c-0.272,0.978-0.613,2.906-1.021,5.785c-0.406,2.879-1.019,5.2-1.832,6.967
|
||||
c-0.815,1.764-2.146,3.163-3.992,4.194c-9.723,5.377-21.347,6.816-34.871,4.318c-8.528-1.467-14.068-4.399-16.621-8.799
|
||||
c-0.814-3.042-1.928-8.745-3.34-17.109l0.407-0.979l0.978-0.488c8.799,5.758,18.739,8.637,29.819,8.637
|
||||
c11.081,0,20.993-2.879,29.736-8.637c0.816,0.217,1.291,0.665,1.427,1.344C139.3,94.414,139.218,95.283,138.919,96.342z
|
||||
M149.062,42.04c-1.737,11.189-3.912,24.034-6.518,38.536c-0.218,1.141-0.748,2.227-1.589,3.259s-1.683,1.819-2.524,2.362
|
||||
c-0.843,0.544-1.916,1.168-3.22,1.873c-9.831,4.945-21.78,6.654-35.848,5.134c-9.722-1.085-17.435-3.802-23.138-8.147
|
||||
c-0.706-0.596-1.303-1.356-1.792-2.281c-0.489-0.922-0.815-1.655-0.978-2.198s-0.353-1.522-0.57-2.935
|
||||
c-0.217-1.412-0.353-2.254-0.407-2.524c-0.327-1.955-0.978-5.676-1.956-11.162s-1.765-10.13-2.363-13.932
|
||||
c-0.597-3.802-1.113-7.55-1.548-11.243c0.217-1.629,1.018-3.095,2.403-4.399c1.385-1.304,2.662-2.228,3.829-2.771
|
||||
c1.168-0.543,2.784-1.222,4.848-2.037c5.106-1.847,11.244-3.096,18.413-3.747c14.719-1.466,27.945-0.489,39.677,2.933
|
||||
c6.084,1.793,10.293,4.183,12.629,7.17C149.333,37.125,149.551,39.161,149.062,42.04z"/>
|
||||
<path d="M114.396,59.963c-3.883-2.226-7.727-2.498-11.528-0.814c-2.444,1.086-4.413,2.824-5.907,5.214s-2.186,4.916-2.078,7.577
|
||||
c0.163,3.64,1.684,6.708,4.562,9.207c2.879,2.498,6.111,3.586,9.696,3.26c3.584-0.326,6.571-1.983,8.963-4.971
|
||||
c2.39-2.986,3.367-6.272,2.933-9.857C120.493,65.396,118.279,62.191,114.396,59.963z M111.585,76.748
|
||||
c-2.28,1.466-4.481,1.574-6.599,0.324c-2.336-0.977-3.517-2.891-3.544-5.742c-0.027-2.851,1.127-4.821,3.463-5.907
|
||||
c1.955-1.195,4.046-1.168,6.273,0.081c2.227,1.25,3.34,3.042,3.34,5.378C114.844,73.326,113.866,75.281,111.585,76.748z"/>
|
||||
<path d="M131.873,35.157c-1.357-0.679-2.525-1.114-3.504-1.304c-0.977-0.189-2.362-0.421-4.154-0.692
|
||||
c-11.408-1.847-22.488-1.819-33.242,0.082c-1.629,0.271-2.905,0.501-3.829,0.692s-2.01,0.612-3.259,1.263
|
||||
c-1.249,0.651-2.227,1.494-2.933,2.525c1.141,1.086,2.621,1.969,4.44,2.648s3.245,1.114,4.277,1.304
|
||||
c1.032,0.189,2.743,0.447,5.133,0.773c9.18,1.087,17.978,1.087,26.397,0c2.391-0.271,4.115-0.488,5.174-0.651
|
||||
s2.499-0.597,4.318-1.304c1.818-0.707,3.271-1.63,4.358-2.771C134.289,36.69,133.229,35.835,131.873,35.157z"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 3.1 KiB |
26
svgs/fa/bitcoin.svg
Executable file
|
|
@ -0,0 +1,26 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 16.0.4, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="216px" height="146px" viewBox="0 0 216 146" enable-background="new 0 0 216 146" xml:space="preserve">
|
||||
<path d="M153.121,76.34c-3.15-4.073-7.903-6.87-14.258-8.391c8.093-4.128,11.65-11.135,10.673-21.021
|
||||
c-0.325-3.585-1.317-6.692-2.974-9.326c-1.658-2.634-3.897-4.752-6.723-6.354c-2.824-1.604-5.895-2.825-9.206-3.667
|
||||
c-3.313-0.842-7.116-1.453-11.407-1.833V5.217H106.68v19.961c-2.172,0-5.485,0.054-9.939,0.163V5.217H84.194v20.531
|
||||
c-1.793,0.055-4.427,0.082-7.903,0.082l-17.272-0.082V39.11h9.043c4.128,0,6.545,1.847,7.251,5.54v23.383
|
||||
c0.544,0,0.978,0.028,1.304,0.082h-1.304v32.751c-0.434,2.77-2.009,4.155-4.725,4.155h-9.043l-2.526,14.91h16.295
|
||||
c1.032,0,2.525,0.014,4.481,0.039c1.955,0.027,3.421,0.041,4.399,0.041v20.775h12.549v-20.531c2.281,0.055,5.594,0.082,9.939,0.082
|
||||
v20.449h12.546v-20.775c4.455-0.217,8.406-0.623,11.854-1.222c3.449-0.599,6.749-1.535,9.899-2.812
|
||||
c3.149-1.276,5.783-2.865,7.902-4.767c2.118-1.899,3.869-4.317,5.256-7.251c1.383-2.934,2.267-6.328,2.646-10.186
|
||||
C157.494,86.227,156.271,80.414,153.121,76.34z M96.985,40.004c0.38,0,1.453-0.014,3.218-0.041c1.766-0.028,3.232-0.055,4.4-0.082
|
||||
c1.168-0.027,2.743,0.041,4.726,0.204c1.983,0.163,3.653,0.381,5.011,0.652c1.357,0.271,2.852,0.719,4.48,1.344
|
||||
c1.63,0.624,2.933,1.385,3.91,2.281c0.978,0.896,1.806,2.037,2.484,3.422c0.68,1.385,1.02,2.974,1.02,4.766
|
||||
c0,1.521-0.244,2.906-0.733,4.156c-0.487,1.249-1.222,2.295-2.199,3.137s-1.983,1.576-3.015,2.2
|
||||
c-1.032,0.624-2.35,1.127-3.951,1.507c-1.602,0.38-3.001,0.679-4.195,0.896c-1.195,0.217-2.688,0.367-4.481,0.448
|
||||
c-1.793,0.081-3.151,0.136-4.074,0.163c-0.924,0.027-2.186,0.027-3.789,0s-2.539-0.041-2.811-0.041V40.004z M131.246,95.487
|
||||
c-0.518,1.25-1.182,2.336-1.996,3.26c-0.816,0.922-1.889,1.738-3.219,2.442c-1.331,0.707-2.621,1.277-3.87,1.712
|
||||
c-1.249,0.436-2.757,0.814-4.521,1.141c-1.767,0.326-3.314,0.556-4.646,0.693c-1.33,0.135-2.919,0.243-4.766,0.325
|
||||
c-1.846,0.08-3.286,0.121-4.318,0.121c-1.032,0-2.336-0.014-3.911-0.041c-1.576-0.025-2.58-0.039-3.015-0.039V77.562
|
||||
c0.434,0,1.724-0.026,3.87-0.082c2.146-0.054,3.897-0.08,5.255-0.08s3.232,0.08,5.623,0.244c2.389,0.162,4.398,0.406,6.029,0.732
|
||||
c1.629,0.326,3.407,0.828,5.336,1.508c1.928,0.678,3.49,1.506,4.685,2.484c1.196,0.979,2.2,2.227,3.015,3.748
|
||||
c0.816,1.521,1.223,3.259,1.223,5.215C132.02,92.854,131.762,94.237,131.246,95.487z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.6 KiB |
24
svgs/fa/bold14.svg
Executable file
|
|
@ -0,0 +1,24 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 16.0.4, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="216px" height="146px" viewBox="0 0 216 146" enable-background="new 0 0 216 146" xml:space="preserve">
|
||||
<path d="M157.861,77.642c-4.889-5.704-12.139-9.668-21.754-11.895c6.738-3.096,10.811-5.187,12.223-6.273
|
||||
c3.422-2.553,6.002-5.405,7.738-8.555c1.738-3.151,2.607-6.627,2.607-10.429c0-3.53-0.57-6.843-1.711-9.939
|
||||
c-1.141-3.097-2.906-5.921-5.295-8.474c-2.445-2.552-5.215-4.617-8.311-6.192c-2.879-1.412-5.486-2.471-7.822-3.177
|
||||
c-5.594-1.467-10.782-2.2-15.561-2.2h-6.029c-1.086,0-2.187-0.014-3.301-0.041c-1.112-0.026-1.696-0.04-1.75-0.04
|
||||
c-0.271,0-0.652,0.014-1.142,0.04c-0.489,0.027-0.87,0.041-1.141,0.041l-3.667,0.082l-30.959,1.059l-21.183,0.489l0.326,6.762
|
||||
c4.562,0.598,7.659,0.952,9.288,1.06c2.77,0.163,4.644,0.571,5.622,1.222c0.598,0.435,0.924,0.761,0.978,0.978
|
||||
c0.543,1.195,0.841,4.155,0.896,8.881c0.217,8.039,0.462,19.011,0.733,32.915l0.163,40.492c0,6.952-0.244,12.222-0.733,15.806
|
||||
c-0.217,1.303-0.788,2.689-1.711,4.155c-2.499,1.032-5.839,1.874-10.021,2.526c-1.249,0.162-3.096,0.488-5.54,0.978l-0.163,7.658
|
||||
c12.981-0.435,20.368-0.733,22.162-0.896c11.623-0.707,19.717-1.005,24.279-0.896l16.05,0.324
|
||||
c6.302,0.217,11.679-0.082,16.132-0.896c7.061-1.304,12.573-2.935,16.539-4.89c4.019-1.955,7.821-4.889,11.405-8.799
|
||||
c2.718-2.986,4.644-6.164,5.785-9.533c1.575-4.615,2.362-8.987,2.362-13.116C165.357,89.809,162.859,83.4,157.861,77.642z
|
||||
M94.068,19.88c4.236-0.706,7.767-1.059,10.591-1.059c9.288,0,16.214,2.037,20.776,6.11c4.615,4.073,6.924,9.152,6.924,15.235
|
||||
c0,8.637-2.416,14.72-7.25,18.25c-4.834,3.53-12.004,5.296-21.509,5.296c-3.585,0-6.545-0.19-8.88-0.57
|
||||
c-0.055-1.847-0.082-3.938-0.082-6.274l0.082-7.984c0.054-8.527-0.109-16.104-0.489-22.731
|
||||
C94.122,24.361,94.068,22.271,94.068,19.88z M134.805,113.98c-2.01,3.91-5.324,6.979-9.939,9.207
|
||||
c-4.618,2.227-10.484,3.34-17.599,3.34c-3.476,0-7.278-0.868-11.406-2.606c-0.652-1.575-0.978-2.771-0.979-3.586l-0.244-21.998
|
||||
l0.082-14.095V72.51c1.467-0.543,4.21-0.814,8.229-0.814c9.071,0,15.778,0.869,20.124,2.607c4.508,1.739,8.338,5.161,11.488,10.266
|
||||
c2.227,3.586,3.34,8.474,3.34,14.666C137.9,105.263,136.867,110.178,134.805,113.98z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.4 KiB |
30
svgs/fa/book95.svg
Executable file
|
|
@ -0,0 +1,30 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 16.0.4, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="216px" height="146px" viewBox="0 0 216 146" enable-background="new 0 0 216 146" xml:space="preserve">
|
||||
<path d="M173.736,38.944c-1.139-1.521-2.742-2.688-4.809-3.503c0.11,1.902-0.025,3.45-0.406,4.646L144.08,120.5
|
||||
c-0.436,1.412-1.387,2.539-2.852,3.381c-1.467,0.842-2.987,1.263-4.562,1.263H61.467c-6.518,0-10.428-1.899-11.732-5.703
|
||||
c-0.543-1.467-0.516-2.634,0.082-3.503c0.597-0.816,1.629-1.223,3.096-1.223h70.8c5.051,0,8.541-0.938,10.469-2.812
|
||||
c1.93-1.874,3.871-6.043,5.826-12.506l22.323-73.815c1.194-4.019,0.706-7.55-1.467-10.591s-5.269-4.562-9.288-4.562h-62
|
||||
c-0.706,0-2.091,0.244-4.155,0.733l0.081-0.245c-1.521-0.325-2.811-0.474-3.87-0.448c-1.059,0.028-2.037,0.34-2.933,0.938
|
||||
c-0.896,0.598-1.616,1.235-2.159,1.914c-0.543,0.679-1.073,1.548-1.589,2.607c-0.515,1.06-0.95,2.038-1.303,2.934
|
||||
c-0.353,0.896-0.761,1.847-1.222,2.853c-0.462,1.005-0.909,1.833-1.344,2.484c-0.326,0.435-0.787,1.005-1.385,1.711
|
||||
c-0.597,0.706-1.086,1.331-1.466,1.874s-0.625,1.032-0.733,1.467c-0.108,0.488-0.054,1.208,0.163,2.159
|
||||
c0.217,0.95,0.299,1.642,0.244,2.077c-0.217,2.064-0.964,4.684-2.24,7.862c-1.276,3.178-2.431,5.473-3.463,6.885
|
||||
c-0.217,0.271-0.814,0.882-1.792,1.833c-0.978,0.95-1.575,1.778-1.792,2.484c-0.217,0.271-0.231,1.032-0.041,2.281
|
||||
c0.19,1.25,0.259,2.118,0.204,2.607c-0.218,1.847-0.896,4.291-2.037,7.333c-1.141,3.041-2.281,5.54-3.422,7.495
|
||||
c-0.163,0.326-0.624,0.95-1.385,1.874c-0.76,0.924-1.222,1.684-1.385,2.281c-0.108,0.434-0.094,1.195,0.041,2.281
|
||||
c0.135,1.086,0.122,1.9-0.041,2.443c-0.434,2.063-1.249,4.549-2.444,7.455c-1.195,2.905-2.417,5.392-3.667,7.454
|
||||
c-0.325,0.544-0.774,1.183-1.344,1.915c-0.57,0.733-1.018,1.371-1.344,1.914c-0.326,0.544-0.543,1.114-0.652,1.711
|
||||
c-0.054,0.326,0.028,0.856,0.245,1.59c0.217,0.732,0.299,1.316,0.244,1.752c-0.055,0.76-0.163,1.766-0.326,3.015
|
||||
s-0.245,1.981-0.245,2.198c-1.195,3.26-1.141,6.709,0.163,10.349c1.521,4.235,4.223,7.808,8.106,10.714
|
||||
c3.884,2.905,7.916,4.357,12.099,4.357h75.2c3.529,0,6.856-1.182,9.979-3.543c3.123-2.363,5.201-5.282,6.232-8.76l22.404-73.813
|
||||
C176.398,45.543,175.91,42.04,173.736,38.944z M87.05,39.107l1.711-5.215c0.217-0.706,0.665-1.317,1.344-1.833
|
||||
c0.679-0.515,1.372-0.774,2.078-0.774h49.536c0.76,0,1.303,0.258,1.629,0.774s0.381,1.127,0.164,1.833l-1.712,5.215
|
||||
c-0.218,0.706-0.665,1.316-1.345,1.833c-0.68,0.515-1.371,0.773-2.077,0.773H88.843c-0.761,0-1.304-0.257-1.63-0.773
|
||||
C86.887,40.423,86.833,39.813,87.05,39.107z M80.288,59.964l1.711-5.214c0.217-0.706,0.665-1.317,1.344-1.833
|
||||
c0.679-0.516,1.371-0.774,2.078-0.774h49.535c0.761,0,1.304,0.257,1.63,0.774c0.325,0.516,0.38,1.127,0.162,1.833l-1.711,5.214
|
||||
c-0.217,0.706-0.665,1.317-1.344,1.833c-0.68,0.516-1.371,0.774-2.078,0.774H82.08c-0.76,0-1.303-0.257-1.629-0.774
|
||||
C80.125,61.281,80.071,60.67,80.288,59.964z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 3.1 KiB |
12
svgs/fa/bookmark10.svg
Executable file
|
|
@ -0,0 +1,12 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 16.0.4, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="216px" height="146px" viewBox="0 0 216 146" enable-background="new 0 0 216 146" xml:space="preserve">
|
||||
<path d="M158.555,15.439c-1.06-1.522-2.486-2.635-4.277-3.341c-1.141-0.488-2.336-0.733-3.586-0.733v-0.001H65.307
|
||||
c-1.249,0-2.443,0.245-3.584,0.733c-1.792,0.706-3.218,1.82-4.277,3.341c-1.059,1.521-1.589,3.204-1.589,5.051v105.02
|
||||
c0,1.847,0.53,3.53,1.589,5.052c1.059,1.521,2.485,2.635,4.277,3.34c1.14,0.488,2.335,0.733,3.584,0.733
|
||||
c2.554,0,4.807-0.896,6.763-2.688L108,97.4l35.93,34.547c1.901,1.736,4.155,2.605,6.762,2.605c1.358,0,2.554-0.216,3.586-0.65
|
||||
c1.791-0.706,3.217-1.82,4.277-3.342c1.059-1.521,1.588-3.203,1.588-5.051V20.49C160.143,18.643,159.613,16.96,158.555,15.439z
|
||||
M149.714,122.982l-34.463-33.078L108,82.98l-7.251,6.924l-34.463,33.078V21.794h83.428V122.982z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.1 KiB |
11
svgs/fa/bookmark9.svg
Executable file
|
|
@ -0,0 +1,11 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 16.0.4, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="216px" height="146px" viewBox="0 0 216 146" enable-background="new 0 0 216 146" xml:space="preserve">
|
||||
<path d="M158.555,15.439c-1.06-1.522-2.486-2.635-4.277-3.341c-1.141-0.488-2.336-0.733-3.586-0.733v-0.001H65.307
|
||||
c-1.249,0-2.443,0.245-3.584,0.733c-1.792,0.706-3.218,1.82-4.277,3.341c-1.059,1.521-1.589,3.204-1.589,5.051v105.02
|
||||
c0,1.847,0.53,3.53,1.589,5.052c1.059,1.521,2.485,2.635,4.277,3.34c1.14,0.488,2.335,0.733,3.584,0.733
|
||||
c2.554,0,4.807-0.896,6.763-2.688L108,97.4l35.93,34.547c1.901,1.736,4.155,2.605,6.762,2.605c1.358,0,2.554-0.216,3.586-0.65
|
||||
c1.791-0.706,3.217-1.82,4.277-3.342c1.059-1.521,1.588-3.203,1.588-5.051V20.49C160.143,18.643,159.613,16.96,158.555,15.439z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1 KiB |
35
svgs/fa/branch.svg
Executable file
|
|
@ -0,0 +1,35 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 16.0.4, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="216px" height="146px" viewBox="0 0 216 146" enable-background="new 0 0 216 146" xml:space="preserve">
|
||||
<path d="M153.952,83.552c-3.858-1.33-7.36-1.969-10.511-1.914c-3.149,0.056-6.342,0.599-9.573,1.629
|
||||
c-3.232,1.032-5.933,2.173-8.104,3.423c-2.174,1.25-4.277,2.674-6.314,4.276s-3.381,2.716-4.033,3.34
|
||||
c-0.652,0.625-1.141,1.128-1.467,1.509c2.716-7.388,4.699-15.074,5.947-23.058l1.386,0.244c0.923,0.163,2.186,0.285,3.788,0.367
|
||||
c1.602,0.082,3.436,0.109,5.5,0.082c2.062-0.027,4.236-0.285,6.518-0.774s4.576-1.141,6.885-1.956
|
||||
c2.31-0.814,4.522-2.05,6.639-3.707c2.119-1.656,4.007-3.598,5.664-5.825c1.656-2.227,3.014-5.065,4.072-8.514
|
||||
c1.062-3.448,1.646-7.291,1.752-11.528c-3.692-1.249-7.291-1.901-10.795-1.955c-3.504-0.055-6.545,0.34-9.125,1.181
|
||||
c-2.58,0.841-5.063,2.05-7.455,3.625c-2.389,1.575-4.317,3.083-5.785,4.521c-1.465,1.439-2.838,3.014-4.112,4.725
|
||||
c-1.276,1.711-2.104,2.878-2.484,3.503s-0.651,1.127-0.815,1.507c0.055-1.412,0.082-3.354,0.082-5.825
|
||||
c0-2.471-0.027-3.843-0.082-4.114l0.57-1.222c0.436-0.815,0.897-1.956,1.387-3.422c0.488-1.467,1.004-3.15,1.547-5.051
|
||||
s0.896-3.979,1.059-6.233c0.164-2.254,0.178-4.576,0.041-6.966c-0.135-2.39-0.691-4.807-1.67-7.251
|
||||
c-0.977-2.444-2.281-4.753-3.91-6.925c-1.629-2.173-3.924-4.251-6.885-6.233c-2.96-1.983-6.423-3.653-10.388-5.011
|
||||
c-2.77,3.694-4.671,7.455-5.703,11.284c-1.032,3.829-1.358,7.278-0.978,10.347c0.38,3.069,1.276,6.124,2.688,9.166
|
||||
c1.412,3.042,2.878,5.567,4.399,7.577c1.521,2.01,3.246,3.951,5.173,5.825c1.929,1.874,3.26,3.082,3.992,3.625
|
||||
c0.733,0.544,1.316,0.978,1.752,1.304c0,3.965-0.326,9.261-0.979,15.887l-0.325-1.303c-0.272-0.815-0.707-1.888-1.304-3.218
|
||||
c-0.598-1.33-1.344-2.851-2.24-4.562s-2.037-3.422-3.422-5.133c-1.384-1.711-2.905-3.367-4.562-4.97
|
||||
c-1.656-1.602-3.652-2.96-5.988-4.073c-2.336-1.113-4.834-1.928-7.496-2.444c-2.662-0.517-5.717-0.543-9.166-0.082
|
||||
c-3.449,0.462-7.074,1.453-10.876,2.974c0.326,3.802,1.1,7.265,2.322,10.388s2.702,5.689,4.44,7.699
|
||||
c1.737,2.009,3.775,3.774,6.11,5.295c2.336,1.521,4.617,2.675,6.844,3.463s4.63,1.413,7.21,1.874c2.58,0.462,4.793,0.733,6.64,0.815
|
||||
s3.734,0.096,5.662,0.041s3.192-0.122,3.789-0.204c0.599-0.082,1.087-0.149,1.468-0.204c-1.414,8.689-3.559,16.594-6.438,23.708
|
||||
c-1.358-2.391-2.893-4.617-4.604-6.682c-1.711-2.063-4.114-4.154-7.21-6.272c-3.097-2.119-6.478-3.653-10.144-4.604
|
||||
c-3.667-0.949-8.215-1.154-13.647-0.611c-5.432,0.545-11.243,2.093-17.435,4.646c1.793,4.509,3.816,8.474,6.07,11.896
|
||||
c2.254,3.42,4.548,6.138,6.884,8.147c2.336,2.011,4.835,3.612,7.496,4.808c2.661,1.194,5.187,1.968,7.577,2.321
|
||||
c2.39,0.353,4.861,0.42,7.414,0.203c2.553-0.217,4.806-0.571,6.762-1.059c1.955-0.489,3.91-1.113,5.866-1.875
|
||||
c-5.541,10.212-12.371,18.21-20.491,23.993c-8.12,5.785-16.879,8.705-26.275,8.76c-1.032,0-1.901,0.339-2.607,1.02
|
||||
c-0.706,0.678-1.059,1.533-1.059,2.565c0,1.031,0.353,1.899,1.059,2.606c0.706,0.705,1.575,1.06,2.607,1.06
|
||||
c11.297-0.056,21.74-3.652,31.326-10.795c9.587-7.144,17.449-16.906,23.587-29.289l1.385,0.813c0.869,0.543,2.119,1.154,3.748,1.832
|
||||
c1.629,0.68,3.517,1.427,5.662,2.241c2.146,0.815,4.494,1.412,7.047,1.792c2.553,0.381,5.174,0.611,7.863,0.693
|
||||
c2.688,0.081,5.444-0.312,8.27-1.182c2.824-0.869,5.512-2.133,8.064-3.789s5.025-4.061,7.414-7.211
|
||||
c2.391-3.149,4.455-6.896,6.193-11.242C161.527,86.986,157.807,84.882,153.952,83.552z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 3.6 KiB |
17
svgs/fa/briefcase11.svg
Executable file
|
|
@ -0,0 +1,17 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 16.0.4, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="216px" height="146px" viewBox="0 0 216 146" enable-background="new 0 0 216 146" xml:space="preserve">
|
||||
<g>
|
||||
<path d="M126.251,96.464c0,1.413-0.517,2.636-1.548,3.667c-1.032,1.032-2.255,1.548-3.667,1.548H94.965
|
||||
c-1.413,0-2.635-0.516-3.667-1.548c-1.032-1.031-1.548-2.254-1.548-3.667V83.429H35v39.107c0,3.584,1.276,6.653,3.829,9.206
|
||||
c2.553,2.553,5.622,3.829,9.207,3.829h119.929c3.584,0,6.653-1.276,9.206-3.829c2.554-2.553,3.829-5.622,3.829-9.206V83.429
|
||||
h-54.749V96.464z"/>
|
||||
<rect x="97.571" y="83.429" width="20.859" height="10.429"/>
|
||||
<path d="M177.171,35.115c-2.553-2.553-5.622-3.829-9.206-3.829h-28.68V18.25c0-2.173-0.76-4.019-2.281-5.54
|
||||
c-1.52-1.52-3.367-2.281-5.539-2.281H84.536c-2.172,0-4.019,0.761-5.54,2.281s-2.281,3.367-2.281,5.54v13.036H48.036
|
||||
c-3.585,0-6.654,1.276-9.207,3.829C36.276,37.668,35,40.736,35,44.321v31.286h146V44.321C181,40.736,179.725,37.668,177.171,35.115
|
||||
z M128.857,31.286H87.143V20.857h41.714V31.286z"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.3 KiB |
23
svgs/fa/bug6.svg
Executable file
|
|
@ -0,0 +1,23 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 16.0.4, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="216px" height="146px" viewBox="0 0 216 146" enable-background="new 0 0 216 146" xml:space="preserve">
|
||||
<g>
|
||||
<path d="M171.628,78.458c-1.03-1.032-2.254-1.549-3.666-1.549h-18.25V52.956l14.095-14.095c1.032-1.032,1.549-2.254,1.549-3.667
|
||||
c0-1.412-0.517-2.634-1.549-3.666c-1.031-1.032-2.254-1.548-3.666-1.548s-2.634,0.516-3.666,1.548L142.38,45.623H73.616
|
||||
L59.521,31.528c-1.032-1.032-2.254-1.548-3.666-1.548c-1.413,0-2.635,0.516-3.667,1.548c-1.032,1.032-1.548,2.254-1.548,3.666
|
||||
c0,1.413,0.516,2.635,1.548,3.667l14.095,14.095v23.953h-18.25c-1.412,0-2.634,0.517-3.666,1.549
|
||||
c-1.032,1.031-1.548,2.255-1.548,3.666c0,1.412,0.516,2.636,1.548,3.666c1.032,1.032,2.254,1.55,3.666,1.55h18.25
|
||||
c0,8.688,1.576,16.131,4.726,22.322l-16.457,18.494c-0.924,1.087-1.345,2.35-1.263,3.788c0.081,1.438,0.638,2.647,1.67,3.626
|
||||
c1.032,0.869,2.199,1.304,3.503,1.304c1.521,0,2.824-0.569,3.911-1.711l14.909-16.865l1.223,1.142
|
||||
c0.76,0.707,1.941,1.588,3.544,2.647s3.395,2.118,5.377,3.179c1.983,1.059,4.346,1.955,7.088,2.688
|
||||
c2.744,0.734,5.5,1.101,8.27,1.101v-73h10.429v73c2.607,0,5.241-0.353,7.902-1.06c2.662-0.705,4.889-1.493,6.682-2.362
|
||||
c1.792-0.87,3.559-1.86,5.295-2.974c1.738-1.113,2.879-1.887,3.422-2.322c0.545-0.436,0.952-0.788,1.223-1.059l16.133,16.05
|
||||
c0.979,1.032,2.199,1.548,3.666,1.548s2.688-0.516,3.667-1.548c1.03-1.032,1.547-2.255,1.547-3.667s-0.517-2.635-1.547-3.666
|
||||
l-16.947-17.027c3.64-6.464,5.459-14.34,5.459-23.627h18.25c1.412,0,2.636-0.517,3.666-1.549c1.032-1.031,1.55-2.254,1.55-3.666
|
||||
S172.662,79.49,171.628,78.458z"/>
|
||||
<path d="M126.453,16.742c-5.078-5.078-11.229-7.618-18.453-7.618c-7.225,0-13.375,2.54-18.454,7.618
|
||||
c-5.078,5.079-7.617,11.23-7.617,18.454h52.141C134.07,27.973,131.532,21.821,126.453,16.742z"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.1 KiB |
67
svgs/fa/building8.svg
Executable file
|
|
@ -0,0 +1,67 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 16.0.4, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="216px" height="146px" viewBox="0 0 216 146" enable-background="new 0 0 216 146" xml:space="preserve">
|
||||
<g>
|
||||
<path d="M163.809,1.548C162.777,0.516,161.555,0,160.143,0H55.857c-1.413,0-2.635,0.516-3.667,1.548
|
||||
c-1.032,1.032-1.548,2.254-1.548,3.666v135.571c0,1.413,0.516,2.635,1.548,3.667c1.033,1.032,2.255,1.548,3.667,1.548h104.286
|
||||
c1.412,0,2.635-0.516,3.666-1.548s1.549-2.254,1.549-3.667V5.214C165.357,3.802,164.841,2.58,163.809,1.548z M154.928,135.572
|
||||
h-31.285v-18.25c0-0.707-0.258-1.318-0.773-1.834c-0.518-0.516-1.127-0.773-1.834-0.773H94.964c-0.706,0-1.317,0.258-1.833,0.773
|
||||
c-0.516,0.516-0.774,1.127-0.774,1.834v18.25H61.071V10.428h93.857V135.572z"/>
|
||||
<path d="M74.107,114.715h5.214c0.706,0,1.317-0.257,1.833-0.773c0.516-0.518,0.774-1.127,0.774-1.834v-5.215
|
||||
c0-0.705-0.258-1.316-0.774-1.832c-0.516-0.516-1.127-0.774-1.833-0.774h-5.214c-0.706,0-1.317,0.258-1.833,0.774
|
||||
s-0.774,1.127-0.774,1.832v5.215c0,0.707,0.258,1.316,0.774,1.834C72.79,114.457,73.401,114.715,74.107,114.715z"/>
|
||||
<path d="M74.107,93.857h5.214c0.706,0,1.317-0.258,1.833-0.773c0.516-0.518,0.774-1.127,0.774-1.834v-5.215
|
||||
c0-0.705-0.258-1.317-0.774-1.832c-0.516-0.516-1.127-0.774-1.833-0.774h-5.214c-0.706,0-1.317,0.259-1.833,0.774
|
||||
S71.5,85.33,71.5,86.035v5.215c0,0.707,0.258,1.316,0.774,1.834C72.79,93.599,73.401,93.857,74.107,93.857z"/>
|
||||
<path d="M94.965,93.857h5.214c0.706,0,1.317-0.258,1.833-0.773c0.516-0.518,0.774-1.127,0.774-1.834v-5.215
|
||||
c0-0.705-0.259-1.316-0.774-1.832c-0.516-0.516-1.127-0.774-1.833-0.774h-5.214c-0.706,0-1.317,0.259-1.833,0.774
|
||||
c-0.516,0.516-0.774,1.127-0.774,1.832v5.215c0,0.707,0.258,1.316,0.774,1.834C93.648,93.599,94.259,93.857,94.965,93.857z"/>
|
||||
<path d="M74.107,73h5.214c0.706,0,1.317-0.258,1.833-0.774c0.516-0.516,0.774-1.127,0.774-1.833v-5.214
|
||||
c0-0.706-0.258-1.317-0.774-1.833c-0.516-0.516-1.127-0.774-1.833-0.774h-5.214c-0.706,0-1.317,0.258-1.833,0.774
|
||||
c-0.516,0.516-0.774,1.127-0.774,1.833v5.214c0,0.706,0.258,1.317,0.774,1.833S73.401,73,74.107,73z"/>
|
||||
<path d="M136.678,114.715h5.215c0.707,0,1.317-0.257,1.834-0.773c0.516-0.518,0.773-1.127,0.773-1.834v-5.215
|
||||
c0-0.705-0.258-1.316-0.773-1.832c-0.517-0.516-1.127-0.774-1.834-0.774h-5.215c-0.705,0-1.316,0.258-1.832,0.774
|
||||
s-0.773,1.127-0.773,1.832v5.215c0,0.707,0.257,1.316,0.773,1.834C135.361,114.457,135.973,114.715,136.678,114.715z"/>
|
||||
<path d="M115.822,93.857h5.214c0.707,0,1.317-0.258,1.834-0.773c0.515-0.518,0.772-1.127,0.772-1.834v-5.215
|
||||
c0-0.705-0.258-1.316-0.772-1.832c-0.517-0.516-1.127-0.774-1.834-0.774h-5.214c-0.706,0-1.318,0.259-1.834,0.774
|
||||
c-0.514,0.516-0.773,1.127-0.773,1.832v5.215c0,0.707,0.258,1.316,0.773,1.834C114.505,93.599,115.116,93.857,115.822,93.857z"/>
|
||||
<path d="M94.965,73h5.214c0.706,0,1.317-0.258,1.833-0.774c0.516-0.516,0.774-1.127,0.774-1.833v-5.214
|
||||
c0-0.706-0.259-1.316-0.774-1.833c-0.516-0.516-1.127-0.774-1.833-0.774h-5.214c-0.706,0-1.317,0.258-1.833,0.774
|
||||
c-0.516,0.516-0.774,1.127-0.774,1.833v5.214c0,0.706,0.258,1.317,0.774,1.833C93.648,72.742,94.259,73,94.965,73z"/>
|
||||
<path d="M74.107,52.143h5.214c0.706,0,1.317-0.258,1.833-0.774c0.516-0.516,0.774-1.126,0.774-1.833v-5.214
|
||||
c0-0.706-0.258-1.318-0.774-1.833c-0.516-0.516-1.127-0.774-1.833-0.774h-5.214c-0.706,0-1.317,0.258-1.833,0.774
|
||||
c-0.516,0.516-0.774,1.127-0.774,1.833v5.214c0,0.706,0.258,1.317,0.774,1.833C72.79,51.885,73.401,52.143,74.107,52.143z"/>
|
||||
<path d="M136.678,93.857h5.215c0.707,0,1.317-0.258,1.834-0.773c0.516-0.518,0.773-1.127,0.773-1.834v-5.215
|
||||
c0-0.705-0.258-1.316-0.773-1.832c-0.517-0.516-1.127-0.774-1.834-0.774h-5.215c-0.705,0-1.316,0.259-1.832,0.774
|
||||
s-0.773,1.127-0.773,1.832v5.215c0,0.707,0.257,1.316,0.773,1.834C135.361,93.599,135.973,93.857,136.678,93.857z"/>
|
||||
<path d="M115.822,73h5.214c0.707,0,1.317-0.258,1.834-0.774c0.515-0.516,0.772-1.127,0.772-1.833v-5.214
|
||||
c0-0.706-0.258-1.316-0.772-1.833c-0.517-0.516-1.127-0.774-1.834-0.774h-5.214c-0.706,0-1.318,0.258-1.834,0.774
|
||||
c-0.514,0.516-0.773,1.127-0.773,1.833v5.214c0,0.706,0.258,1.317,0.773,1.833C114.505,72.742,115.116,73,115.822,73z"/>
|
||||
<path d="M94.965,52.143h5.214c0.706,0,1.317-0.258,1.833-0.774c0.516-0.516,0.774-1.126,0.774-1.833v-5.214
|
||||
c0-0.706-0.259-1.318-0.774-1.833c-0.516-0.516-1.127-0.774-1.833-0.774h-5.214c-0.706,0-1.317,0.258-1.833,0.774
|
||||
c-0.516,0.516-0.774,1.127-0.774,1.833v5.214c0,0.706,0.258,1.317,0.774,1.833C93.648,51.885,94.259,52.143,94.965,52.143z"/>
|
||||
<path d="M74.107,31.285h5.214c0.706,0,1.317-0.258,1.833-0.774c0.516-0.516,0.774-1.127,0.774-1.833v-5.214
|
||||
c0-0.706-0.258-1.317-0.774-1.833c-0.516-0.516-1.127-0.774-1.833-0.774h-5.214c-0.706,0-1.317,0.258-1.833,0.774
|
||||
c-0.516,0.516-0.774,1.127-0.774,1.833v5.214c0,0.706,0.258,1.317,0.774,1.833C72.79,31.027,73.401,31.285,74.107,31.285z"/>
|
||||
<path d="M136.678,73h5.215c0.707,0,1.317-0.258,1.834-0.774c0.516-0.516,0.773-1.127,0.773-1.833v-5.214
|
||||
c0-0.706-0.258-1.316-0.773-1.833c-0.517-0.516-1.127-0.774-1.834-0.774h-5.215c-0.705,0-1.316,0.258-1.832,0.774
|
||||
c-0.516,0.516-0.773,1.127-0.773,1.833v5.214c0,0.706,0.257,1.317,0.773,1.833C135.361,72.742,135.973,73,136.678,73z"/>
|
||||
<path d="M115.822,52.143h5.214c0.707,0,1.317-0.258,1.834-0.774c0.515-0.516,0.772-1.126,0.772-1.833v-5.214
|
||||
c0-0.706-0.258-1.318-0.772-1.833c-0.517-0.516-1.127-0.774-1.834-0.774h-5.214c-0.706,0-1.317,0.258-1.834,0.774
|
||||
c-0.514,0.516-0.773,1.127-0.773,1.833v5.214c0,0.706,0.258,1.317,0.773,1.833C114.505,51.885,115.116,52.143,115.822,52.143z"/>
|
||||
<path d="M94.965,31.285h5.214c0.706,0,1.317-0.258,1.833-0.774c0.516-0.516,0.774-1.127,0.774-1.833v-5.214
|
||||
c0-0.706-0.259-1.317-0.774-1.833c-0.516-0.516-1.127-0.774-1.833-0.774h-5.214c-0.706,0-1.317,0.258-1.833,0.774
|
||||
c-0.516,0.516-0.774,1.127-0.774,1.833v5.214c0,0.706,0.258,1.317,0.774,1.833C93.648,31.027,94.259,31.285,94.965,31.285z"/>
|
||||
<path d="M136.678,52.143h5.215c0.707,0,1.317-0.258,1.834-0.774c0.516-0.516,0.773-1.126,0.773-1.833v-5.214
|
||||
c0-0.706-0.258-1.318-0.773-1.833c-0.517-0.516-1.127-0.774-1.834-0.774h-5.215c-0.705,0-1.316,0.258-1.832,0.774
|
||||
c-0.516,0.516-0.773,1.127-0.773,1.833v5.214c0,0.706,0.257,1.317,0.773,1.833C135.361,51.885,135.973,52.143,136.678,52.143z"/>
|
||||
<path d="M115.822,31.285h5.214c0.707,0,1.317-0.258,1.834-0.774c0.515-0.516,0.772-1.127,0.772-1.833v-5.214
|
||||
c0-0.706-0.258-1.317-0.772-1.833c-0.517-0.516-1.127-0.774-1.834-0.774h-5.214c-0.706,0-1.318,0.258-1.834,0.774
|
||||
c-0.514,0.516-0.773,1.127-0.773,1.833v5.214c0,0.706,0.258,1.317,0.773,1.833C114.505,31.027,115.116,31.285,115.822,31.285z"/>
|
||||
<path d="M136.678,31.285h5.215c0.707,0,1.317-0.258,1.834-0.774c0.516-0.516,0.773-1.127,0.773-1.833v-5.214
|
||||
c0-0.706-0.258-1.317-0.773-1.833c-0.517-0.516-1.127-0.774-1.834-0.774h-5.215c-0.705,0-1.316,0.258-1.832,0.774
|
||||
c-0.516,0.516-0.773,1.127-0.773,1.833v5.214c0,0.706,0.257,1.317,0.773,1.833C135.361,31.027,135.973,31.285,136.678,31.285z"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 7 KiB |
18
svgs/fa/bull1.svg
Executable file
|
|
@ -0,0 +1,18 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 16.0.4, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="216px" height="146px" viewBox="0 0 216 146" enable-background="new 0 0 216 146" xml:space="preserve">
|
||||
<path d="M177.945,55.148c-2.037-2.036-4.495-3.055-7.375-3.055h0.002V20.807c0-2.825-1.033-5.269-3.096-7.333
|
||||
c-2.063-2.064-4.51-3.096-7.334-3.096c-25.039,20.857-49.373,31.286-73,31.286H48.036c-3.585,0-6.654,1.276-9.207,3.829
|
||||
C36.276,48.047,35,51.116,35,54.7v15.643c0,3.585,1.274,6.654,3.827,9.207c2.553,2.554,5.622,3.829,9.207,3.829h9.94
|
||||
c-0.923,2.934-1.521,5.936-1.792,9.003c-0.271,3.069-0.366,5.743-0.285,8.025s0.489,5.024,1.222,8.229
|
||||
c0.733,3.204,1.358,5.621,1.874,7.25c0.516,1.631,1.385,4.196,2.607,7.699c1.222,3.504,2.023,5.88,2.403,7.129
|
||||
c2.498,2.281,6.083,3.789,10.754,4.522c4.672,0.731,9.248,0.42,13.729-0.938c4.481-1.357,7.509-3.613,9.084-6.762
|
||||
c-2.064-1.63-3.734-3.001-5.01-4.115c-1.277-1.113-2.58-2.47-3.911-4.072s-2.24-3.096-2.729-4.481
|
||||
c-0.489-1.385-0.652-2.96-0.489-4.726c0.163-1.766,0.788-3.545,1.874-5.336c-2.064-2.119-3.151-4.631-3.259-7.537
|
||||
c-0.108-2.905,0.734-5.635,2.526-8.188s4.264-4.345,7.414-5.377c21.456,1.792,43.507,12.112,66.157,30.96
|
||||
c2.823,0,5.27-1.032,7.332-3.096c2.064-2.063,3.096-4.509,3.096-7.333V72.95c2.88,0,5.338-1.018,7.375-3.055
|
||||
C179.98,67.858,181,65.4,181,62.522C181,59.643,179.98,57.185,177.945,55.148z M160.143,101.303
|
||||
c-21.238-16.24-42.094-25.502-62.571-27.783V51.522c20.313-2.227,41.171-11.542,62.571-27.945V101.303z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.7 KiB |
27
svgs/fa/bullseye.svg
Executable file
|
|
@ -0,0 +1,27 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 16.0.4, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="216px" height="146px" viewBox="0 0 216 146" enable-background="new 0 0 216 146" xml:space="preserve">
|
||||
<g>
|
||||
<path d="M162.18,41.592c-5.595-9.586-13.185-17.176-22.771-22.771c-9.588-5.595-20.055-8.392-31.408-8.392
|
||||
c-11.352,0-21.822,2.797-31.408,8.392c-9.587,5.594-17.177,13.184-22.772,22.771C48.225,51.179,45.428,61.649,45.428,73
|
||||
c0,11.352,2.798,21.82,8.392,31.408c5.595,9.585,13.185,17.176,22.772,22.771c9.587,5.595,20.056,8.392,31.408,8.392
|
||||
c11.352,0,21.822-2.797,31.408-8.392c9.586-5.594,17.176-13.185,22.771-22.771c5.594-9.587,8.391-20.057,8.391-31.408
|
||||
C170.57,61.648,167.773,51.178,162.18,41.592z M155.988,93.246c-2.77,6.436-6.477,11.976-11.121,16.62
|
||||
c-4.643,4.644-10.184,8.351-16.62,11.12c-6.437,2.771-13.185,4.156-20.246,4.156c-7.061,0-13.809-1.385-20.246-4.156
|
||||
c-6.436-2.769-11.977-6.476-16.621-11.12c-4.643-4.644-8.35-10.183-11.121-16.62c-2.77-6.436-4.155-13.186-4.155-20.246
|
||||
c0-7.061,1.385-13.809,4.155-20.246c2.77-6.436,6.477-11.976,11.121-16.621c4.644-4.643,10.185-8.35,16.621-11.121
|
||||
c6.436-2.769,13.185-4.154,20.246-4.154c7.06,0,13.81,1.384,20.246,4.154s11.976,6.477,16.62,11.121
|
||||
c4.644,4.644,8.351,10.184,11.121,16.621c2.77,6.436,4.156,13.184,4.156,20.246C160.145,80.061,158.758,86.811,155.988,93.246z"/>
|
||||
<path d="M108,31.285c-11.514,0-21.346,4.075-29.493,12.222C70.36,51.654,66.286,61.485,66.286,73
|
||||
c0,11.516,4.074,21.346,12.221,29.493S96.486,114.714,108,114.714c11.514,0,21.348-4.073,29.493-12.221
|
||||
c8.147-8.147,12.221-17.978,12.221-29.493c0-11.515-4.073-21.346-12.221-29.493C129.348,35.359,119.514,31.285,108,31.285z
|
||||
M130.12,95.12c-6.11,6.11-13.483,9.165-22.12,9.165c-8.637,0-16.01-3.055-22.12-9.165c-6.111-6.11-9.166-13.484-9.166-22.12
|
||||
c0-8.637,3.055-16.01,9.166-22.12c6.111-6.11,13.484-9.166,22.12-9.166c8.637,0,16.01,3.056,22.12,9.166
|
||||
c6.11,6.11,9.166,13.483,9.166,22.12C139.286,81.636,136.23,89.01,130.12,95.12z"/>
|
||||
<path d="M108,52.143c-5.758,0-10.673,2.037-14.747,6.11c-4.073,4.074-6.11,8.989-6.11,14.747s2.036,10.673,6.11,14.746
|
||||
c4.074,4.074,8.99,6.111,14.747,6.111c5.758,0,10.674-2.037,14.747-6.111c4.073-4.073,6.11-8.988,6.11-14.746
|
||||
s-2.037-10.673-6.11-14.747C118.674,54.18,113.758,52.143,108,52.143z"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.5 KiB |
18
svgs/fa/calendar51.svg
Executable file
|
|
@ -0,0 +1,18 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 16.0.4, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="216px" height="146px" viewBox="0 0 216 146" enable-background="new 0 0 216 146" xml:space="preserve">
|
||||
<path d="M172.691,23.953c-2.062-2.064-4.508-3.096-7.332-3.096h-10.428v-7.822c0-3.584-1.277-6.653-3.83-9.206
|
||||
c-2.554-2.553-5.621-3.83-9.207-3.83h-5.213c-3.586,0-6.654,1.277-9.207,3.83c-2.554,2.553-3.83,5.622-3.83,9.206v7.822H92.359
|
||||
v-7.822c0-3.584-1.277-6.653-3.83-9.206c-2.553-2.553-5.622-3.83-9.207-3.83h-5.214c-3.585,0-6.654,1.277-9.207,3.83
|
||||
c-2.553,2.553-3.83,5.622-3.83,9.206v7.822H50.643c-2.825,0-5.269,1.032-7.333,3.096s-3.096,4.509-3.096,7.333v104.287
|
||||
c0,2.823,1.032,5.267,3.096,7.332c2.064,2.064,4.508,3.096,7.333,3.096h114.714c2.824,0,5.27-1.032,7.332-3.096
|
||||
c2.064-2.064,3.096-4.509,3.096-7.332V31.286C175.785,28.461,174.754,26.017,172.691,23.953z M134.073,13.036
|
||||
c0-0.761,0.243-1.386,0.731-1.874c0.488-0.488,1.113-0.733,1.875-0.733h5.213c0.762,0,1.385,0.244,1.875,0.733
|
||||
c0.488,0.489,0.732,1.114,0.732,1.874V36.5c0,0.761-0.244,1.385-0.732,1.874c-0.49,0.488-1.113,0.733-1.875,0.733h-5.213
|
||||
c-0.762,0-1.387-0.244-1.875-0.733s-0.731-1.113-0.731-1.874V13.036z M71.501,13.036c0-0.761,0.244-1.386,0.733-1.874
|
||||
c0.489-0.488,1.113-0.733,1.874-0.733h5.214c0.761,0,1.386,0.244,1.874,0.733c0.488,0.489,0.733,1.114,0.733,1.874V36.5
|
||||
c0,0.761-0.244,1.386-0.733,1.874c-0.489,0.488-1.113,0.733-1.874,0.733h-5.214c-0.761,0-1.386-0.244-1.874-0.733
|
||||
c-0.488-0.489-0.733-1.113-0.733-1.874V13.036z M165.357,135.572H50.643V52.143h114.714V135.572z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.8 KiB |
23
svgs/fa/calendar52.svg
Executable file
|
|
@ -0,0 +1,23 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 16.0.4, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="216px" height="146px" viewBox="0 0 216 146" enable-background="new 0 0 216 146" xml:space="preserve">
|
||||
<path d="M172.691,23.953c-2.062-2.064-4.508-3.096-7.332-3.096h-10.428v-7.822c0-3.584-1.277-6.653-3.83-9.206
|
||||
c-2.554-2.553-5.621-3.83-9.207-3.83h-5.213c-3.586,0-6.654,1.277-9.207,3.83c-2.554,2.553-3.83,5.622-3.83,9.206v7.822H92.359
|
||||
v-7.822c0-3.584-1.277-6.653-3.83-9.206c-2.553-2.553-5.622-3.83-9.207-3.83h-5.214c-3.585,0-6.654,1.277-9.207,3.83
|
||||
c-2.553,2.553-3.83,5.622-3.83,9.206v7.822H50.643c-2.825,0-5.269,1.032-7.333,3.096s-3.096,4.509-3.096,7.333v104.287
|
||||
c0,2.823,1.032,5.267,3.096,7.332c2.064,2.064,4.508,3.096,7.333,3.096h114.714c2.824,0,5.27-1.032,7.332-3.096
|
||||
c2.064-2.064,3.096-4.509,3.096-7.332V31.286C175.785,28.461,174.754,26.017,172.691,23.953z M74.107,135.572H50.643v-23.465h23.464
|
||||
V135.572z M74.107,106.893H50.643V80.823h23.464V106.893z M74.107,75.607H50.643V52.143h23.464V75.607z M72.275,38.333
|
||||
c-0.516-0.516-0.774-1.126-0.774-1.833V13.036c0-0.706,0.258-1.317,0.774-1.833c0.516-0.516,1.126-0.774,1.833-0.774h5.214
|
||||
c0.706,0,1.317,0.258,1.833,0.774c0.516,0.516,0.774,1.127,0.774,1.833V36.5c0,0.707-0.259,1.317-0.774,1.833
|
||||
c-0.516,0.516-1.126,0.774-1.833,0.774h-5.214C73.402,39.107,72.791,38.849,72.275,38.333z M105.393,135.572H79.321v-23.465h26.072
|
||||
V135.572z M105.393,106.893H79.321V80.823h26.072V106.893z M105.393,75.607H79.321V52.143h26.072V75.607z M136.68,135.572h-26.072
|
||||
v-23.465h26.072V135.572z M136.68,106.893h-26.072V80.823h26.072V106.893z M136.68,75.607h-26.072V52.143h26.072V75.607z
|
||||
M134.846,38.333c-0.515-0.516-0.772-1.126-0.772-1.833V13.036c0-0.706,0.257-1.317,0.772-1.833
|
||||
c0.516-0.516,1.127-0.774,1.834-0.774h5.213c0.707,0,1.318,0.258,1.834,0.774c0.516,0.516,0.773,1.127,0.773,1.833V36.5
|
||||
c0,0.707-0.258,1.317-0.773,1.833s-1.127,0.774-1.834,0.774h-5.213C135.973,39.107,135.361,38.849,134.846,38.333z M165.357,135.572
|
||||
h-23.465v-23.465h23.465V135.572z M165.357,106.893h-23.465V80.823h23.465V106.893z M165.357,75.607h-23.465V52.143h23.465V75.607z"
|
||||
/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.3 KiB |
23
svgs/fa/camera46.svg
Executable file
|
|
@ -0,0 +1,23 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 16.0.4, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="216px" height="146px" viewBox="0 0 216 146" enable-background="new 0 0 216 146" xml:space="preserve">
|
||||
<g>
|
||||
<path d="M177.945,13.483c-2.036-2.036-4.494-3.055-7.373-3.055H45.429c-2.879,0-5.337,1.02-7.374,3.055
|
||||
C36.019,15.52,35,17.978,35,20.857v104.286c0,2.879,1.018,5.336,3.055,7.373c2.038,2.037,4.495,3.056,7.374,3.056H170.57
|
||||
c2.88,0,5.338-1.019,7.375-3.056c2.035-2.037,3.055-4.494,3.055-7.373V20.857C181,17.979,179.98,15.521,177.945,13.483z
|
||||
M55.857,15.642h31.286v10.429H55.857V15.642z M170.572,125.143H45.429v-10.429h125.143V125.143z M76.714,78.377
|
||||
c0-8.636,3.056-16.01,9.166-22.12c6.111-6.11,13.484-9.165,22.12-9.165c8.637,0,16.01,3.055,22.12,9.165
|
||||
c6.11,6.11,9.165,13.484,9.165,22.12c0,8.637-3.055,16.01-9.165,22.12s-13.483,9.166-22.12,9.166
|
||||
c-8.636,0-16.009-3.056-22.12-9.166C79.769,94.387,76.714,87.014,76.714,78.377z M170.572,32.101v9.613H45.429V31.286h52.47
|
||||
l5.214-10.428h67.459V32.101z"/>
|
||||
<path d="M122.746,93.124c4.074-4.074,6.111-8.989,6.111-14.747c0-5.757-2.037-10.673-6.111-14.746
|
||||
c-4.073-4.074-8.988-6.111-14.746-6.111s-10.673,2.037-14.747,6.111c-4.073,4.073-6.11,8.989-6.11,14.746
|
||||
c0,5.758,2.036,10.673,6.11,14.747c4.074,4.073,8.99,6.11,14.747,6.11C113.758,99.234,118.673,97.197,122.746,93.124z
|
||||
M102.459,72.674c-1.521,1.521-2.281,3.368-2.281,5.54c0,0.761-0.244,1.386-0.733,1.874c-0.489,0.489-1.113,0.733-1.874,0.733
|
||||
c-0.761,0-1.385-0.244-1.874-0.733c-0.489-0.488-0.733-1.113-0.733-1.874c0-3.585,1.276-6.653,3.829-9.206
|
||||
c2.553-2.553,5.622-3.829,9.207-3.829c0.76,0,1.385,0.244,1.874,0.733c0.489,0.488,0.733,1.113,0.733,1.873
|
||||
c0,0.761-0.244,1.386-0.734,1.875c-0.489,0.489-1.114,0.733-1.874,0.733C105.826,70.393,103.98,71.153,102.459,72.674z"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2 KiB |
33
svgs/fa/camera47.svg
Executable file
|
|
@ -0,0 +1,33 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 16.0.4, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="216px" height="146px" viewBox="0 0 216 146" enable-background="new 0 0 216 146" xml:space="preserve">
|
||||
<g>
|
||||
<path d="M149.286,99.823c-12.166,8.038-25.95,12.058-41.348,12.058s-29.154-4.02-41.266-12.058l-1.467,0.733l-0.489,1.304
|
||||
c1.738,10.645,3.286,18.575,4.644,23.79c1.087,1.9,2.499,3.572,4.237,5.011c1.738,1.438,3.72,2.62,5.947,3.544
|
||||
c2.227,0.923,4.305,1.656,6.233,2.199c1.928,0.543,4.141,1.031,6.64,1.467c5.594,0.924,11.066,1.426,16.416,1.507
|
||||
c5.351,0.082,10.836-0.516,16.458-1.792c5.622-1.275,10.768-3.218,15.439-5.824c1.955-1.088,3.53-2.623,4.726-4.604
|
||||
c1.194-1.982,1.968-3.884,2.321-5.703s0.734-4.101,1.141-6.844c0.409-2.743,0.829-4.82,1.264-6.232
|
||||
c0-0.489,0.219-1.495,0.652-3.015s0.57-2.743,0.407-3.666C151.079,100.773,150.427,100.149,149.286,99.823z"/>
|
||||
<path d="M164.034,21.527c-3.259-4.127-9.099-7.44-17.517-9.939c-16.133-4.726-34.492-6.084-55.077-4.074
|
||||
C81.23,8.491,72.73,10.229,65.94,12.728c-1.63,0.597-2.933,1.099-3.911,1.507c-0.978,0.407-2.227,1.018-3.748,1.833
|
||||
s-2.744,1.629-3.667,2.444c-0.923,0.814-1.778,1.833-2.566,3.055s-1.263,2.539-1.426,3.951c0.488,3.911,1.085,8.202,1.792,12.873
|
||||
s1.345,8.677,1.915,12.017c0.57,3.34,1.33,7.726,2.281,13.158c0.951,5.432,1.67,9.506,2.159,12.221
|
||||
c0.109,0.49,0.258,1.439,0.448,2.852c0.19,1.413,0.353,2.486,0.489,3.219c0.136,0.734,0.38,1.658,0.733,2.771
|
||||
c0.353,1.115,0.815,2.065,1.385,2.853c0.571,0.787,1.263,1.508,2.078,2.158c7.93,6.084,18.63,9.858,32.1,11.325
|
||||
c19.445,2.063,36.012-0.325,49.699-7.17c1.792-0.922,3.271-1.764,4.439-2.524c1.168-0.762,2.351-1.848,3.545-3.26
|
||||
s1.928-2.933,2.199-4.562c4.617-26.507,7.631-44.295,9.043-53.366c0.326-1.249,0.475-2.716,0.451-4.4
|
||||
C165.352,23.999,164.902,22.613,164.034,21.527z M121.99,81.898c-3.314,4.128-7.442,6.408-12.385,6.844
|
||||
c-4.996,0.435-9.49-1.086-13.482-4.562s-6.097-7.686-6.314-12.629C89.646,67.803,90.583,64.286,92.62,61s4.766-5.689,8.188-7.21
|
||||
c5.323-2.39,10.672-2.037,16.049,1.059s8.447,7.55,9.207,13.362C126.662,73.208,125.305,77.77,121.99,81.898z M139.426,27.842
|
||||
c-2.499,0.95-4.468,1.534-5.906,1.751c-1.439,0.217-3.869,0.543-7.291,0.979c-11.951,1.52-24.117,1.493-36.5-0.082
|
||||
c-3.259-0.38-5.635-0.693-7.129-0.938c-1.493-0.244-3.489-0.841-5.988-1.792c-2.499-0.951-4.563-2.186-6.192-3.707
|
||||
c0.978-1.412,2.336-2.58,4.074-3.503c1.738-0.923,3.232-1.52,4.481-1.792s3.042-0.598,5.377-0.978
|
||||
c14.937-2.662,30.308-2.716,46.114-0.163c2.662,0.435,4.59,0.774,5.785,1.019c1.195,0.244,2.77,0.842,4.725,1.792
|
||||
c1.955,0.95,3.477,2.159,4.562,3.625C143.963,25.628,141.925,26.892,139.426,27.842z"/>
|
||||
<path d="M114.781,64.422c-1.494-1.603-3.233-2.567-5.215-2.893c-1.982-0.326-3.95,0-5.906,0.978
|
||||
c-2.064,0.923-3.476,2.498-4.237,4.725c-0.76,2.227-0.747,4.454,0.041,6.682c0.788,2.227,2.24,3.802,4.359,4.725
|
||||
c2.878,1.739,5.905,1.575,9.084-0.488c3.177-2.063,4.549-4.807,4.114-8.229C117.021,67.858,116.273,66.025,114.781,64.422z"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 3.2 KiB |
9
svgs/fa/caret4.svg
Executable file
|
|
@ -0,0 +1,9 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 16.0.4, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="216px" height="146px" viewBox="0 0 216 146" enable-background="new 0 0 216 146" xml:space="preserve">
|
||||
<path d="M129.916,32.834c-1.031-1.032-2.254-1.548-3.666-1.548s-2.635,0.516-3.666,1.548l-36.5,36.5
|
||||
c-1.032,1.032-1.548,2.254-1.548,3.666s0.516,2.635,1.548,3.666l36.5,36.5c1.031,1.032,2.254,1.549,3.666,1.549
|
||||
s2.635-0.517,3.666-1.549c1.032-1.031,1.549-2.254,1.549-3.666v-73C131.465,35.088,130.948,33.866,129.916,32.834z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 807 B |
9
svgs/fa/caret5.svg
Executable file
|
|
@ -0,0 +1,9 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 16.0.4, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="216px" height="146px" viewBox="0 0 216 146" enable-background="new 0 0 216 146" xml:space="preserve">
|
||||
<path d="M148.166,51.083c-1.031-1.032-2.254-1.548-3.666-1.548h-73c-1.413,0-2.635,0.516-3.667,1.548
|
||||
c-1.032,1.033-1.548,2.255-1.548,3.667s0.516,2.634,1.548,3.666l36.5,36.5c1.033,1.032,2.255,1.549,3.667,1.549
|
||||
s2.635-0.517,3.666-1.549l36.5-36.5c1.031-1.032,1.549-2.254,1.549-3.666S149.197,52.116,148.166,51.083z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 799 B |
9
svgs/fa/caret6.svg
Executable file
|
|
@ -0,0 +1,9 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 16.0.4, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="216px" height="146px" viewBox="0 0 216 146" enable-background="new 0 0 216 146" xml:space="preserve">
|
||||
<path d="M148.166,87.584l-36.5-36.5c-1.031-1.032-2.253-1.548-3.666-1.548s-2.635,0.516-3.667,1.548l-36.5,36.5
|
||||
c-1.032,1.032-1.548,2.254-1.548,3.666s0.516,2.635,1.548,3.666c1.033,1.032,2.255,1.548,3.667,1.548h73
|
||||
c1.412,0,2.635-0.516,3.666-1.548c1.031-1.031,1.549-2.254,1.549-3.666S149.197,88.616,148.166,87.584z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 800 B |
18
svgs/fa/center5.svg
Executable file
|
|
@ -0,0 +1,18 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 16.0.4, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="216px" height="146px" viewBox="0 0 216 146" enable-background="new 0 0 216 146" xml:space="preserve">
|
||||
<path d="M181,114.714v10.429c0,1.412-0.516,2.635-1.548,3.668c-1.032,1.03-2.255,1.547-3.667,1.547H40.214
|
||||
c-1.412,0-2.634-0.517-3.667-1.547c-1.032-1.033-1.548-2.256-1.548-3.668v-10.429c0-1.412,0.516-2.634,1.548-3.666
|
||||
c1.032-1.032,2.254-1.548,3.667-1.548h135.571c1.412,0,2.635,0.516,3.667,1.548S181,113.302,181,114.714z M71.5,78.214
|
||||
c-1.413,0-2.635,0.517-3.667,1.549c-1.032,1.031-1.548,2.255-1.548,3.666v10.429c0,1.412,0.516,2.636,1.548,3.666
|
||||
c1.033,1.032,2.255,1.549,3.667,1.549h73c1.412,0,2.635-0.517,3.666-1.549c1.032-1.03,1.549-2.254,1.549-3.666V83.429
|
||||
c0-1.411-0.517-2.635-1.549-3.666c-1.031-1.032-2.254-1.549-3.666-1.549H71.5z M50.643,67.787h114.714
|
||||
c1.412,0,2.634-0.517,3.666-1.549c1.031-1.031,1.547-2.254,1.547-3.666V52.143c0-1.413-0.516-2.634-1.547-3.666
|
||||
c-1.032-1.032-2.254-1.548-3.666-1.548H50.643c-1.413,0-2.635,0.516-3.667,1.548c-1.032,1.032-1.548,2.254-1.548,3.666v10.429
|
||||
c0,1.412,0.516,2.635,1.548,3.666C48.009,67.27,49.23,67.787,50.643,67.787z M81.929,36.5h52.141c1.412,0,2.635-0.516,3.668-1.548
|
||||
c1.031-1.032,1.547-2.254,1.547-3.666V20.857c0-1.412-0.516-2.634-1.546-3.667c-1.033-1.031-2.255-1.548-3.667-1.548H81.929
|
||||
c-1.413,0-2.635,0.517-3.667,1.548c-1.032,1.032-1.548,2.255-1.548,3.667v10.429c0,1.412,0.516,2.634,1.548,3.666
|
||||
C79.295,35.984,80.517,36.5,81.929,36.5z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.7 KiB |
18
svgs/fa/certificate6.svg
Executable file
|
|
@ -0,0 +1,18 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 16.0.4, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="216px" height="146px" viewBox="0 0 216 146" enable-background="new 0 0 216 146" xml:space="preserve">
|
||||
<path d="M168.777,83.993l-11.242-10.999l11.242-10.999c1.63-1.521,2.173-3.422,1.63-5.703c-0.651-2.227-2.063-3.612-4.237-4.155
|
||||
l-15.316-3.911l4.318-15.154c0.651-2.226,0.137-4.128-1.549-5.703c-1.574-1.684-3.475-2.2-5.703-1.548l-15.152,4.318l-3.912-15.317
|
||||
c-0.543-2.227-1.926-3.612-4.153-4.155c-2.228-0.598-4.129-0.081-5.703,1.548L108,23.54L97.001,12.215
|
||||
c-1.575-1.684-3.476-2.2-5.703-1.548c-2.227,0.543-3.612,1.928-4.155,4.155l-3.911,15.317l-15.154-4.318
|
||||
c-2.227-0.652-4.128-0.136-5.703,1.548c-1.684,1.575-2.2,3.476-1.548,5.703l4.318,15.154l-15.317,3.911
|
||||
c-2.172,0.543-3.585,1.928-4.236,4.155c-0.544,2.281,0,4.182,1.629,5.703l11.243,10.999L47.221,83.993
|
||||
c-1.629,1.521-2.172,3.422-1.629,5.703c0.651,2.227,2.064,3.612,4.236,4.155l15.317,3.91l-4.318,15.154
|
||||
c-0.652,2.227-0.136,4.127,1.548,5.703c1.575,1.684,3.476,2.199,5.703,1.548l15.154-4.317l3.911,15.316
|
||||
c0.543,2.227,1.928,3.639,4.155,4.236c2.281,0.543,4.182,0,5.703-1.629L108,122.529l11,11.244c1.086,1.193,2.471,1.791,4.154,1.791
|
||||
c0.381,0,0.896-0.055,1.549-0.162c2.227-0.652,3.611-2.064,4.154-4.236l3.91-15.316l15.153,4.317
|
||||
c2.228,0.651,4.129,0.136,5.703-1.548c1.685-1.576,2.2-3.477,1.549-5.703l-4.317-15.154l15.315-3.91
|
||||
c2.175-0.543,3.586-1.928,4.237-4.155C170.951,87.415,170.408,85.514,168.777,83.993z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.7 KiB |
12
svgs/fa/check29.svg
Executable file
|
|
@ -0,0 +1,12 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 16.0.4, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="216px" height="146px" viewBox="0 0 216 146" enable-background="new 0 0 216 146" xml:space="preserve">
|
||||
<path d="M158.473,22.527c-4.59-4.59-10.117-6.885-16.58-6.885H74.107c-6.463,0-11.99,2.295-16.58,6.885
|
||||
c-4.589,4.59-6.884,10.116-6.884,16.58v67.786c0,6.463,2.295,11.989,6.884,16.58c4.59,4.59,10.117,6.885,16.58,6.885h67.786
|
||||
c6.463,0,11.989-2.295,16.58-6.885c4.59-4.591,6.885-10.117,6.885-16.58V39.107C165.357,32.644,163.062,27.117,158.473,22.527z
|
||||
M154.928,106.893c0,3.584-1.275,6.653-3.828,9.207c-2.553,2.553-5.621,3.828-9.207,3.828H74.107c-3.585,0-6.654-1.275-9.207-3.828
|
||||
c-2.553-2.554-3.829-5.623-3.829-9.207V39.107c0-3.585,1.276-6.654,3.829-9.207c2.553-2.553,5.622-3.829,9.207-3.829h67.786
|
||||
c3.586,0,6.654,1.276,9.207,3.829c2.553,2.553,3.828,5.622,3.828,9.207V106.893z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.1 KiB |
20
svgs/fa/check30.svg
Executable file
|
|
@ -0,0 +1,20 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 16.0.4, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="216px" height="146px" viewBox="0 0 216 146" enable-background="new 0 0 216 146" xml:space="preserve">
|
||||
<g>
|
||||
<path d="M153.34,78.621c-0.326-0.163-0.652-0.245-0.979-0.245c-0.707,0-1.33,0.271-1.873,0.815l-5.215,5.214
|
||||
c-0.488,0.489-0.733,1.086-0.733,1.792v20.693c0,3.586-1.274,6.654-3.828,9.207c-2.553,2.553-5.622,3.829-9.207,3.829H63.719
|
||||
c-3.585,0-6.654-1.276-9.207-3.829c-2.553-2.553-3.829-5.621-3.829-9.207V39.106c0-3.585,1.276-6.654,3.829-9.207
|
||||
c2.553-2.553,5.622-3.829,9.207-3.829h67.787c1.195,0,2.417,0.163,3.666,0.489c0.326,0.108,0.57,0.163,0.732,0.163
|
||||
c0.707,0,1.332-0.271,1.875-0.814l3.992-3.992c0.651-0.651,0.896-1.439,0.732-2.362c-0.163-0.869-0.652-1.494-1.467-1.874
|
||||
c-2.932-1.356-6.11-2.037-9.532-2.037H63.719c-6.463,0-11.99,2.295-16.58,6.885c-4.589,4.59-6.884,10.116-6.884,16.58v67.786
|
||||
c0,6.463,2.295,11.989,6.884,16.579c4.59,4.591,10.117,6.886,16.58,6.886h67.786c6.463,0,11.99-2.295,16.58-6.886
|
||||
c4.59-4.59,6.886-10.116,6.886-16.579V80.984C154.971,79.844,154.426,79.057,153.34,78.621z"/>
|
||||
<path d="M173.791,31.856l-8.963-8.963c-1.303-1.303-2.852-1.955-4.645-1.955c-1.791,0-3.341,0.652-4.644,1.955l-52.714,52.714
|
||||
L81.399,54.179c-1.304-1.304-2.852-1.955-4.644-1.955s-3.34,0.651-4.644,1.955l-8.962,8.962c-1.304,1.304-1.956,2.852-1.956,4.645
|
||||
c0,1.792,0.652,3.34,1.956,4.644l35.033,35.033c1.304,1.305,2.852,1.956,4.644,1.956s3.34-0.651,4.644-1.956l66.32-66.319
|
||||
c1.303-1.303,1.956-2.852,1.956-4.644S175.094,33.159,173.791,31.856z"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.8 KiB |
13
svgs/fa/check31.svg
Executable file
|
|
@ -0,0 +1,13 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 16.0.4, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="216px" height="146px" viewBox="0 0 216 146" enable-background="new 0 0 216 146" xml:space="preserve">
|
||||
<path d="M163.686,17.313c-4.588-4.589-10.115-6.884-16.578-6.884H68.893c-6.463,0-11.99,2.295-16.58,6.884
|
||||
c-4.589,4.59-6.884,10.117-6.884,16.58v78.214c0,6.463,2.295,11.99,6.884,16.58c4.59,4.59,10.117,6.885,16.58,6.885h78.214
|
||||
c6.463,0,11.99-2.295,16.578-6.885c4.59-4.59,6.885-10.117,6.885-16.58V33.893C170.57,27.43,168.275,21.902,163.686,17.313z
|
||||
M151.264,55.809l-50.026,50.025c-1.032,1.031-2.254,1.548-3.667,1.549c-1.413,0-2.635-0.517-3.667-1.548L64.737,76.667
|
||||
c-1.032-1.032-1.548-2.254-1.548-3.666s0.516-2.635,1.548-3.666l8.311-8.311c1.032-1.032,2.253-1.548,3.666-1.548
|
||||
s2.635,0.516,3.667,1.548l17.191,17.19l38.048-38.048c1.03-1.032,2.254-1.548,3.666-1.548s2.634,0.516,3.666,1.548l8.312,8.311
|
||||
c1.03,1.032,1.547,2.254,1.547,3.666C152.811,53.555,152.294,54.778,151.264,55.809z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.2 KiB |
30
svgs/fa/checkered2.svg
Executable file
|
|
@ -0,0 +1,30 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 16.0.4, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="216px" height="146px" viewBox="0 0 216 146" enable-background="new 0 0 216 146" xml:space="preserve">
|
||||
<g>
|
||||
<path d="M48.037,10.428c-2.879,0-5.337,1.02-7.374,3.055c-2.036,2.037-3.055,4.495-3.055,7.374c0,1.901,0.475,3.639,1.426,5.214
|
||||
c0.95,1.575,2.213,2.824,3.788,3.748v103.145c0,0.761,0.244,1.386,0.733,1.874c0.489,0.489,1.113,0.733,1.874,0.733h5.214
|
||||
c0.761,0,1.386-0.244,1.874-0.733c0.489-0.488,0.733-1.113,0.733-1.874V29.819c1.575-0.924,2.838-2.173,3.788-3.748
|
||||
c0.951-1.575,1.426-3.314,1.426-5.214c0-2.878-1.018-5.336-3.054-7.374C53.373,11.447,50.915,10.428,48.037,10.428z"/>
|
||||
<path d="M175.869,21.59c-1.684-0.977-3.367-1.031-5.053-0.162c-0.488,0.272-1.33,0.733-2.524,1.385
|
||||
c-10.212,6.083-18.63,9.125-25.257,9.125c-2.77,0-5.188-0.516-7.251-1.548c-6.083-2.987-11.759-5.323-17.028-7.007
|
||||
c-5.268-1.683-10.944-2.525-17.027-2.525c-3.965,0-8.175,0.516-12.628,1.548c-4.454,1.032-8.596,2.376-12.425,4.032
|
||||
c-3.829,1.657-6.926,3.069-9.288,4.237c-2.364,1.168-4.496,2.321-6.396,3.462c-1.684,1.086-2.526,2.58-2.526,4.481v60.453
|
||||
c0,2.009,0.869,3.53,2.607,4.562c0.869,0.435,1.738,0.651,2.607,0.651c0.977,0,1.874-0.244,2.688-0.731
|
||||
c5.16-3.151,11.365-5.922,18.616-8.312c7.252-2.39,13.648-3.585,19.188-3.585c3.149,0,6.246,0.38,9.288,1.141
|
||||
c3.041,0.76,5.513,1.549,7.414,2.362c1.899,0.815,4.588,2.119,8.065,3.911l2.281,1.141c3.801,1.902,8.092,2.853,12.871,2.853
|
||||
c8.202,0,18.223-3.15,30.064-9.451c0.38-0.216,0.842-0.461,1.385-0.733c1.9-0.978,2.852-2.525,2.852-4.644V26.071
|
||||
C178.393,24.17,177.551,22.677,175.869,21.59z M68.893,41.633c11.515-6.41,21.943-9.831,31.286-10.266v16.05
|
||||
c-9.18,0.381-19.609,3.585-31.286,9.614V41.633z M100.179,81.473c-9.723,0.76-20.152,3.748-31.286,8.963V75.362
|
||||
c11.026-5.485,21.455-8.663,31.286-9.532V81.473z M167.964,85.141c-9.397,4.996-17.354,7.494-23.872,7.494
|
||||
c-2.66,0-5.133-0.463-7.414-1.386V75.934c8.094,2.444,18.521,0.517,31.286-5.785V85.141z M167.964,50.351
|
||||
c-12.817,7.169-23.247,9.613-31.286,7.333v18.248c-1.086-0.325-2.145-0.733-3.177-1.222c-5.812-2.879-11.176-5.106-16.091-6.681
|
||||
c-4.916-1.575-10.144-2.363-15.684-2.363h-1.548V47.579c1.412-0.163,2.743-0.244,3.992-0.244c1.194,0,2.39,0.055,3.585,0.163
|
||||
c1.195,0.108,2.269,0.217,3.218,0.325c0.95,0.109,2.022,0.312,3.219,0.611c1.195,0.298,2.146,0.529,2.852,0.692
|
||||
c0.707,0.164,1.684,0.503,2.934,1.019c1.25,0.517,2.131,0.87,2.647,1.06s1.454,0.611,2.812,1.263
|
||||
c1.357,0.652,2.213,1.06,2.566,1.222c0.354,0.163,1.29,0.625,2.811,1.386c1.521,0.76,2.418,1.222,2.688,1.385
|
||||
c1.032,0.489,2.091,0.897,3.177,1.222V41.715c1.793,0.434,3.911,0.652,6.355,0.652c7.441,0,15.752-2.472,24.931-7.414V50.351z"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.9 KiB |
15
svgs/fa/chevron17.svg
Executable file
|
|
@ -0,0 +1,15 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 16.0.4, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="216px" height="146px" viewBox="0 0 216 146" enable-background="new 0 0 216 146" xml:space="preserve">
|
||||
<path d="M162.18,41.592c-5.595-9.586-13.185-17.176-22.771-22.771c-9.588-5.595-20.055-8.392-31.408-8.392
|
||||
c-11.352,0-21.822,2.797-31.408,8.392c-9.587,5.594-17.177,13.184-22.772,22.771C48.225,51.179,45.428,61.649,45.428,73
|
||||
c0,11.352,2.798,21.82,8.392,31.408c5.595,9.585,13.185,17.176,22.772,22.771c9.587,5.595,20.056,8.392,31.408,8.392
|
||||
c11.352,0,21.822-2.797,31.408-8.392c9.586-5.594,17.176-13.185,22.771-22.771c5.594-9.587,8.391-20.057,8.391-31.408
|
||||
C170.57,61.648,167.773,51.178,162.18,41.592z M148.656,84.486l-8.311,8.312c-1.033,1.032-2.255,1.548-3.666,1.548
|
||||
c-1.412,0-2.636-0.516-3.666-1.548L108,67.785L82.989,92.798c-1.032,1.032-2.254,1.548-3.666,1.548
|
||||
c-1.413,0-2.635-0.516-3.667-1.548l-8.31-8.312c-1.032-1.03-1.548-2.254-1.548-3.666c0-1.411,0.516-2.633,1.548-3.666l36.989-36.988
|
||||
c1.032-1.032,2.254-1.548,3.666-1.548s2.636,0.516,3.666,1.548l36.989,36.988c1.031,1.033,1.548,2.255,1.548,3.666
|
||||
C150.204,82.232,149.688,83.456,148.656,84.486z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.4 KiB |
10
svgs/fa/chevron18.svg
Executable file
|
|
@ -0,0 +1,10 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 16.0.4, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="216px" height="146px" viewBox="0 0 216 146" enable-background="new 0 0 216 146" xml:space="preserve">
|
||||
<path d="M144.988,65.667L91.869,12.628c-1.956-2.064-4.399-3.096-7.333-3.096s-5.377,1.033-7.333,3.096l-6.192,6.111
|
||||
c-2.01,2.01-3.015,4.453-3.015,7.332c0,2.824,1.005,5.296,3.015,7.414L110.607,73L71.01,112.596c-2.01,2.01-3.015,4.454-3.015,7.333
|
||||
c0,2.824,1.005,5.296,3.015,7.414l6.192,6.11c2.01,2.01,4.455,3.015,7.333,3.015c2.879,0,5.324-1.005,7.333-3.015l53.12-53.039
|
||||
c2.01-2.118,3.016-4.59,3.016-7.414C148.004,70.121,146.998,67.677,144.988,65.667z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 938 B |
15
svgs/fa/chevron19.svg
Executable file
|
|
@ -0,0 +1,15 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 16.0.4, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="216px" height="146px" viewBox="0 0 216 146" enable-background="new 0 0 216 146" xml:space="preserve">
|
||||
<path d="M162.18,41.592c-5.595-9.586-13.185-17.176-22.771-22.771c-9.588-5.595-20.055-8.392-31.408-8.392
|
||||
c-11.352,0-21.822,2.797-31.408,8.392c-9.587,5.594-17.177,13.184-22.772,22.771C48.225,51.179,45.428,61.649,45.428,73
|
||||
c0,11.352,2.798,21.82,8.392,31.408c5.595,9.585,13.185,17.176,22.772,22.771c9.587,5.595,20.056,8.392,31.408,8.392
|
||||
c11.352,0,21.822-2.797,31.408-8.392c9.586-5.594,17.176-13.185,22.771-22.771c5.594-9.587,8.391-20.057,8.391-31.408
|
||||
C170.57,61.648,167.773,51.178,162.18,41.592z M140.834,76.666l-36.989,36.989c-1.032,1.032-2.253,1.549-3.666,1.549
|
||||
c-1.413,0-2.635-0.517-3.667-1.548l-8.31-8.312c-1.032-1.032-1.548-2.254-1.548-3.666c0-1.411,0.516-2.635,1.548-3.667L113.215,73
|
||||
L88.201,47.988c-1.032-1.031-1.548-2.254-1.548-3.666c0-1.412,0.516-2.634,1.548-3.666l8.31-8.312
|
||||
c1.033-1.032,2.254-1.548,3.667-1.548c1.413,0,2.635,0.516,3.667,1.548l36.989,36.989c1.032,1.031,1.548,2.254,1.548,3.666
|
||||
S141.866,75.634,140.834,76.666z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.4 KiB |
10
svgs/fa/chevron20.svg
Executable file
|
|
@ -0,0 +1,10 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 16.0.4, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="216px" height="146px" viewBox="0 0 216 146" enable-background="new 0 0 216 146" xml:space="preserve">
|
||||
<path d="M105.393,73.041l39.595-39.596c2.011-2.01,3.015-4.468,3.015-7.374c0-2.906-1.004-5.363-3.015-7.373l-6.11-6.111
|
||||
c-2.009-2.009-4.467-3.014-7.372-3.014c-2.906,0-5.363,1.005-7.374,3.014l-53.12,53.039c-2.01,2.01-3.015,4.468-3.015,7.374
|
||||
s1.005,5.363,3.015,7.373l53.12,53.039c2.011,2.01,4.468,3.015,7.374,3.015c2.905,0,5.363-1.005,7.372-3.015l6.11-6.11
|
||||
c2.011-2.009,3.015-4.454,3.015-7.333c0-2.878-1.004-5.35-3.015-7.414L105.393,73.041z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 929 B |
10
svgs/fa/chevron21.svg
Executable file
|
|
@ -0,0 +1,10 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 16.0.4, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="216px" height="146px" viewBox="0 0 216 146" enable-background="new 0 0 216 146" xml:space="preserve">
|
||||
<path d="M168.452,42.121l-6.109-6.111c-2.118-2.009-4.59-3.014-7.413-3.014c-2.88,0-5.324,1.005-7.334,3.014L108,75.607
|
||||
L68.404,36.011c-2.01-2.009-4.454-3.014-7.333-3.014c-2.824,0-5.296,1.005-7.414,3.014l-6.029,6.111
|
||||
c-2.064,2.063-3.096,4.535-3.096,7.414c0,2.933,1.033,5.377,3.096,7.332l53.039,53.039c1.956,2.064,4.399,3.096,7.333,3.096
|
||||
c2.879,0,5.35-1.032,7.413-3.096l53.039-53.039c2.01-2.01,3.016-4.454,3.016-7.332C171.468,46.711,170.462,44.24,168.452,42.121z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 951 B |
10
svgs/fa/chevron22.svg
Executable file
|
|
@ -0,0 +1,10 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 16.0.4, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="216px" height="146px" viewBox="0 0 216 146" enable-background="new 0 0 216 146" xml:space="preserve">
|
||||
<path d="M168.371,89.052l-52.958-53.04c-2.117-2.01-4.589-3.015-7.413-3.015c-2.879,0-5.323,1.005-7.333,3.015l-53.039,53.04
|
||||
c-2.064,2.063-3.096,4.535-3.096,7.414c0,2.933,1.033,5.377,3.096,7.332l6.11,6.11c1.956,2.064,4.4,3.097,7.333,3.097
|
||||
c2.933,0,5.377-1.034,7.333-3.097L108,70.393l39.596,39.514c1.955,2.063,4.399,3.097,7.334,3.097c2.877,0,5.35-1.034,7.413-3.097
|
||||
l6.109-6.11c2.01-2.01,3.016-4.454,3.016-7.332C171.468,93.586,170.436,91.114,168.371,89.052z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 945 B |
15
svgs/fa/chevron23.svg
Executable file
|
|
@ -0,0 +1,15 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 16.0.4, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="216px" height="146px" viewBox="0 0 216 146" enable-background="new 0 0 216 146" xml:space="preserve">
|
||||
<path d="M162.18,41.592c-5.595-9.586-13.185-17.176-22.771-22.771c-9.588-5.595-20.055-8.392-31.408-8.392
|
||||
c-11.352,0-21.822,2.797-31.408,8.392c-9.587,5.594-17.177,13.184-22.772,22.771C48.225,51.179,45.428,61.649,45.428,73
|
||||
c0,11.352,2.798,21.82,8.392,31.408c5.595,9.585,13.185,17.176,22.772,22.771c9.587,5.595,20.056,8.392,31.408,8.392
|
||||
c11.352,0,21.822-2.797,31.408-8.392c9.586-5.594,17.176-13.185,22.771-22.771c5.594-9.587,8.391-20.057,8.391-31.408
|
||||
C170.57,61.648,167.773,51.178,162.18,41.592z M148.654,68.845l-36.988,36.989c-1.031,1.031-2.254,1.548-3.666,1.548
|
||||
s-2.634-0.517-3.666-1.548L67.345,68.845c-1.032-1.032-1.548-2.254-1.548-3.666c0-1.412,0.516-2.635,1.548-3.667l8.31-8.31
|
||||
c1.033-1.032,2.254-1.548,3.667-1.548c1.412,0,2.634,0.516,3.666,1.548L108,78.214l25.012-25.012
|
||||
c1.031-1.032,2.254-1.548,3.666-1.548s2.635,0.516,3.666,1.548l8.311,8.31c1.033,1.032,1.549,2.255,1.549,3.667
|
||||
C150.203,66.591,149.688,67.813,148.654,68.845z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.4 KiB |
15
svgs/fa/chevron24.svg
Executable file
|
|
@ -0,0 +1,15 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 16.0.4, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="216px" height="146px" viewBox="0 0 216 146" enable-background="new 0 0 216 146" xml:space="preserve">
|
||||
<path d="M162.18,41.592c-5.595-9.586-13.185-17.176-22.771-22.771c-9.588-5.595-20.055-8.392-31.408-8.392
|
||||
c-11.352,0-21.822,2.797-31.408,8.392c-9.587,5.594-17.177,13.184-22.772,22.771C48.225,51.179,45.428,61.649,45.428,73
|
||||
c0,11.352,2.798,21.82,8.392,31.408c5.595,9.585,13.185,17.176,22.772,22.771c9.587,5.595,20.056,8.392,31.408,8.392
|
||||
c11.352,0,21.822-2.797,31.408-8.392c9.586-5.594,17.176-13.185,22.771-22.771c5.594-9.587,8.391-20.057,8.391-31.408
|
||||
C170.57,61.648,167.773,51.178,162.18,41.592z M127.798,98.011c1.032,1.032,1.55,2.255,1.55,3.667s-0.518,2.635-1.55,3.666
|
||||
l-8.312,8.312c-1.03,1.032-2.252,1.548-3.664,1.547c-1.413,0-2.635-0.517-3.668-1.548L75.166,76.665
|
||||
c-1.032-1.032-1.548-2.254-1.548-3.666s0.516-2.635,1.548-3.666l36.988-36.989c1.033-1.032,2.255-1.548,3.668-1.548
|
||||
c1.412,0,2.634,0.516,3.664,1.548l8.312,8.312c1.032,1.032,1.55,2.254,1.55,3.666c0,1.412-0.518,2.635-1.55,3.666L102.786,73
|
||||
L127.798,98.011z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.4 KiB |
15
svgs/fa/circle33.svg
Executable file
|
|
@ -0,0 +1,15 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 16.0.4, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="216px" height="146px" viewBox="0 0 216 146" enable-background="new 0 0 216 146" xml:space="preserve">
|
||||
<path d="M162.18,41.592c-5.595-9.586-13.185-17.176-22.771-22.771c-9.588-5.595-20.055-8.392-31.408-8.392
|
||||
c-11.352,0-21.822,2.797-31.408,8.392c-9.587,5.594-17.177,13.184-22.772,22.771C48.225,51.179,45.428,61.649,45.428,73
|
||||
c0,11.352,2.798,21.82,8.392,31.408c5.595,9.585,13.185,17.176,22.772,22.771c9.587,5.595,20.056,8.392,31.408,8.392
|
||||
c11.352,0,21.822-2.797,31.408-8.392c9.586-5.594,17.176-13.185,22.771-22.771c5.594-9.587,8.391-20.057,8.391-31.408
|
||||
C170.57,61.648,167.773,51.178,162.18,41.592z M146.374,95.242c-3.965,6.789-9.342,12.166-16.132,16.132
|
||||
c-6.789,3.965-14.203,5.946-22.242,5.946c-8.038,0-15.452-1.981-22.242-5.946c-6.789-3.966-12.166-9.343-16.131-16.132
|
||||
C65.661,88.453,63.679,81.039,63.679,73s1.983-15.453,5.948-22.242c3.964-6.789,9.342-12.167,16.131-16.132
|
||||
S99.961,28.679,108,28.679s15.453,1.982,22.242,5.947c6.79,3.965,12.167,9.343,16.132,16.132S152.32,64.961,152.32,73
|
||||
S150.339,88.453,146.374,95.242z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.4 KiB |
16
svgs/fa/circle34.svg
Executable file
|
|
@ -0,0 +1,16 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 16.0.4, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="216px" height="146px" viewBox="0 0 216 146" enable-background="new 0 0 216 146" xml:space="preserve">
|
||||
<path d="M162.18,41.592c-5.595-9.586-13.185-17.176-22.771-22.771c-9.588-5.595-20.055-8.392-31.408-8.392
|
||||
c-11.352,0-21.822,2.797-31.408,8.392c-9.587,5.594-17.177,13.184-22.772,22.771C48.225,51.179,45.428,61.649,45.428,73
|
||||
c0,11.352,2.798,21.82,8.392,31.408c5.595,9.585,13.185,17.176,22.772,22.771c9.587,5.595,20.056,8.392,31.408,8.392
|
||||
c11.352,0,21.822-2.797,31.408-8.392c9.586-5.594,17.176-13.185,22.771-22.771c5.594-9.587,8.391-20.057,8.391-31.408
|
||||
C170.57,61.648,167.773,51.178,162.18,41.592z M149.714,78.214c0,1.412-0.516,2.636-1.547,3.667
|
||||
c-1.033,1.031-2.255,1.549-3.667,1.549h-40.899l15.398,15.397c0.978,0.978,1.467,2.199,1.467,3.666s-0.489,2.688-1.467,3.666
|
||||
l-7.414,7.414c-0.978,0.978-2.201,1.467-3.667,1.467s-2.688-0.489-3.666-1.467L74.759,84.08l-7.414-7.414
|
||||
c-0.978-0.979-1.467-2.199-1.467-3.666s0.489-2.688,1.467-3.666l7.414-7.414l29.493-29.494c0.978-0.978,2.199-1.466,3.666-1.466
|
||||
s2.689,0.488,3.667,1.466l7.414,7.414c1.032,1.032,1.548,2.255,1.548,3.667c0,1.412-0.516,2.634-1.548,3.666l-15.398,15.398H144.5
|
||||
c1.412,0,2.634,0.516,3.667,1.548c1.031,1.032,1.547,2.254,1.547,3.666V78.214z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.6 KiB |
11
svgs/fa/circular56.svg
Executable file
|
|
@ -0,0 +1,11 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 16.0.4, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="216px" height="146px" viewBox="0 0 216 146" enable-background="new 0 0 216 146" xml:space="preserve">
|
||||
<path d="M162.18,41.592c-5.595-9.586-13.185-17.176-22.771-22.771c-9.588-5.595-20.055-8.392-31.408-8.392
|
||||
c-11.352,0-21.822,2.797-31.408,8.392c-9.587,5.594-17.177,13.184-22.772,22.771C48.225,51.179,45.428,61.649,45.428,73
|
||||
c0,11.352,2.798,21.82,8.392,31.408c5.595,9.585,13.185,17.176,22.772,22.771c9.587,5.595,20.056,8.392,31.408,8.392
|
||||
c11.352,0,21.822-2.797,31.408-8.392c9.586-5.594,17.176-13.185,22.771-22.771c5.594-9.587,8.391-20.057,8.391-31.408
|
||||
C170.57,61.648,167.773,51.178,162.18,41.592z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 986 B |
17
svgs/fa/cloud106.svg
Executable file
|
|
@ -0,0 +1,17 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 16.0.4, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="216px" height="146px" viewBox="0 0 216 146" enable-background="new 0 0 216 146" xml:space="preserve">
|
||||
<path d="M179.41,79.638c-4.536-5.676-10.333-9.355-17.395-11.039c2.228-3.367,3.34-7.115,3.34-11.243
|
||||
c0-5.758-2.037-10.673-6.11-14.747c-4.073-4.073-8.988-6.11-14.746-6.11c-5.16,0-9.668,1.684-13.524,5.052
|
||||
c-3.203-7.822-8.324-14.095-15.357-18.82c-7.033-4.726-14.787-7.089-23.261-7.089c-11.514,0-21.346,4.075-29.493,12.222
|
||||
c-8.148,8.146-12.221,17.978-12.221,29.493c0,0.706,0.055,1.874,0.163,3.503c-6.409,2.987-11.514,7.468-15.317,13.442
|
||||
c-3.802,5.976-5.703,12.492-5.703,19.555c0,10.048,3.572,18.643,10.714,25.785c7.142,7.144,15.738,10.715,25.786,10.715h88.645
|
||||
c8.635,0,16.008-3.057,22.119-9.166c6.11-6.11,9.166-13.483,9.166-22.12C186.215,91.793,183.947,85.316,179.41,79.638z
|
||||
M133.296,77.44c-0.517,0.515-1.127,0.772-1.832,0.772h-18.25v28.68c0,0.705-0.258,1.316-0.774,1.832
|
||||
c-0.517,0.517-1.127,0.774-1.832,0.774H94.963c-0.706,0-1.317-0.257-1.833-0.774c-0.515-0.516-0.774-1.127-0.774-1.832v-28.68
|
||||
h-18.25c-0.76,0-1.385-0.244-1.873-0.731c-0.489-0.489-0.733-1.114-0.733-1.874c0-0.652,0.271-1.305,0.814-1.956l28.597-28.597
|
||||
c0.489-0.489,1.114-0.733,1.874-0.733c0.761,0,1.386,0.244,1.874,0.733l28.679,28.678c0.489,0.488,0.732,1.113,0.732,1.875
|
||||
C134.07,76.312,133.812,76.925,133.296,77.44z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.6 KiB |
17
svgs/fa/cloud107.svg
Executable file
|
|
@ -0,0 +1,17 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 16.0.4, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="216px" height="146px" viewBox="0 0 216 146" enable-background="new 0 0 216 146" xml:space="preserve">
|
||||
<path d="M179.41,79.638c-4.536-5.676-10.333-9.355-17.395-11.039c2.228-3.367,3.34-7.115,3.34-11.243
|
||||
c0-5.758-2.037-10.673-6.11-14.747c-4.073-4.073-8.988-6.11-14.746-6.11c-5.16,0-9.668,1.684-13.524,5.052
|
||||
c-3.203-7.822-8.324-14.095-15.357-18.82c-7.033-4.726-14.787-7.089-23.261-7.089c-11.514,0-21.346,4.075-29.493,12.222
|
||||
c-8.148,8.146-12.221,17.978-12.221,29.493c0,0.706,0.055,1.874,0.163,3.503c-6.409,2.987-11.514,7.468-15.317,13.442
|
||||
c-3.802,5.976-5.703,12.492-5.703,19.555c0,10.048,3.572,18.643,10.714,25.785c7.142,7.144,15.738,10.715,25.786,10.715h88.645
|
||||
c8.635,0,16.008-3.057,22.119-9.166c6.11-6.11,9.166-13.483,9.166-22.12C186.215,91.793,183.947,85.316,179.41,79.638z
|
||||
M133.258,82.775l-28.598,28.599c-0.488,0.488-1.113,0.733-1.874,0.733c-0.76,0-1.385-0.245-1.874-0.733L72.234,82.695
|
||||
c-0.489-0.489-0.733-1.113-0.733-1.874c0-0.706,0.257-1.317,0.773-1.833c0.517-0.516,1.127-0.774,1.833-0.774h18.25V49.536
|
||||
c0-0.706,0.258-1.317,0.774-1.834c0.516-0.515,1.127-0.773,1.833-0.773h15.644c0.707,0,1.316,0.257,1.834,0.773
|
||||
c0.515,0.517,0.773,1.128,0.773,1.834v28.678h18.25c0.76,0,1.385,0.245,1.873,0.733c0.489,0.488,0.732,1.113,0.732,1.874
|
||||
C134.07,81.475,133.8,82.125,133.258,82.775z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.6 KiB |
19
svgs/fa/code10.svg
Executable file
|
|
@ -0,0 +1,19 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 16.0.4, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="216px" height="146px" viewBox="0 0 216 146" enable-background="new 0 0 216 146" xml:space="preserve">
|
||||
<g>
|
||||
<path d="M126.413,18.575l-5.052-1.385c-0.651-0.217-1.291-0.149-1.914,0.204c-0.625,0.353-1.047,0.883-1.264,1.589l-30.39,105.182
|
||||
c-0.217,0.706-0.149,1.372,0.204,1.996c0.353,0.625,0.882,1.046,1.589,1.263l5.051,1.385c0.652,0.219,1.29,0.151,1.915-0.203
|
||||
c0.625-0.354,1.046-0.883,1.263-1.588l30.39-105.183c0.217-0.706,0.149-1.372-0.204-1.997S127.119,18.792,126.413,18.575z"/>
|
||||
<path d="M80.87,39.108c0-0.706-0.272-1.331-0.815-1.874l-4.074-4.074c-0.543-0.543-1.168-0.815-1.874-0.815
|
||||
s-1.331,0.272-1.874,0.815L34.267,71.126c-0.544,0.543-0.815,1.168-0.815,1.874s0.272,1.331,0.815,1.874l37.966,37.966
|
||||
c0.543,0.544,1.167,0.814,1.874,0.814s1.331-0.271,1.874-0.814l4.074-4.072c0.543-0.543,0.815-1.168,0.815-1.875
|
||||
c0-0.705-0.272-1.33-0.815-1.873L48.036,73l32.019-32.018C80.599,40.439,80.87,39.814,80.87,39.108z"/>
|
||||
<path d="M181.732,71.125l-37.967-37.966c-0.543-0.543-1.168-0.815-1.873-0.815c-0.707,0-1.33,0.272-1.875,0.815l-4.072,4.074
|
||||
c-0.543,0.543-0.814,1.167-0.814,1.874s0.271,1.331,0.814,1.874L167.964,73l-32.019,32.02c-0.543,0.543-0.814,1.168-0.814,1.873
|
||||
c0,0.707,0.271,1.332,0.814,1.875l4.072,4.072c0.545,0.544,1.168,0.814,1.875,0.814c0.705,0,1.33-0.271,1.873-0.814l37.967-37.966
|
||||
c0.543-0.543,0.814-1.169,0.814-1.875S182.275,71.668,181.732,71.125z"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.7 KiB |
24
svgs/fa/code11.svg
Executable file
|
|
@ -0,0 +1,24 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 16.0.4, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="216px" height="146px" viewBox="0 0 216 146" enable-background="new 0 0 216 146" xml:space="preserve">
|
||||
<path d="M145.152,25.419c-3.043-3.041-6.736-4.562-11.082-4.562c-4.344,0-8.037,1.52-11.079,4.562
|
||||
c-3.041,3.041-4.562,6.734-4.562,11.08c0,2.824,0.705,5.445,2.117,7.862s3.312,4.305,5.703,5.662c0,2.824-0.23,5.31-0.691,7.455
|
||||
c-0.463,2.145-1.222,4.032-2.281,5.662c-1.061,1.63-2.159,3.014-3.301,4.155c-1.141,1.141-2.744,2.213-4.807,3.218
|
||||
c-2.064,1.005-3.979,1.846-5.744,2.526c-1.765,0.678-4.142,1.479-7.129,2.402c-5.432,1.685-9.614,3.232-12.547,4.645V39.594
|
||||
c2.39-1.357,4.291-3.245,5.703-5.662s2.118-5.038,2.118-7.862c0-4.345-1.52-8.039-4.562-11.08c-3.041-3.041-6.734-4.562-11.08-4.562
|
||||
c-4.346,0-8.039,1.52-11.081,4.562c-3.041,3.041-4.562,6.735-4.562,11.08c0,2.824,0.706,5.445,2.118,7.862
|
||||
c1.412,2.417,3.313,4.305,5.703,5.662v66.809c-2.39,1.356-4.291,3.245-5.703,5.661c-1.412,2.418-2.118,5.039-2.118,7.863
|
||||
c0,4.344,1.52,8.038,4.562,11.079s6.736,4.562,11.081,4.562c4.345,0,8.039-1.521,11.08-4.562s4.562-6.735,4.562-11.079
|
||||
c0-2.824-0.706-5.445-2.118-7.863c-1.412-2.416-3.313-4.305-5.703-5.661v-2.119c0-3.747,1.127-6.462,3.381-8.146
|
||||
c2.254-1.685,6.857-3.613,13.81-5.785c7.333-2.336,12.847-4.537,16.54-6.601c12.166-6.897,18.304-18.14,18.412-33.729
|
||||
c2.392-1.357,4.291-3.245,5.703-5.662c1.412-2.417,2.119-5.038,2.119-7.862C149.715,32.154,148.193,28.461,145.152,25.419z
|
||||
M87.469,125.469c-1.521,1.521-3.368,2.281-5.54,2.281c-2.173,0-4.02-0.76-5.541-2.281c-1.52-1.52-2.281-3.367-2.281-5.54
|
||||
s0.76-4.019,2.281-5.54c1.521-1.521,3.368-2.281,5.541-2.281c2.172,0,4.019,0.761,5.54,2.281c1.521,1.521,2.281,3.367,2.281,5.54
|
||||
S88.99,123.949,87.469,125.469z M87.469,31.611c-1.521,1.521-3.368,2.281-5.54,2.281c-2.173,0-4.02-0.76-5.541-2.281
|
||||
c-1.52-1.521-2.281-3.367-2.281-5.54c0-2.173,0.76-4.02,2.281-5.54s3.368-2.281,5.541-2.281c2.172,0,4.019,0.761,5.54,2.281
|
||||
c1.521,1.52,2.281,3.367,2.281,5.54C89.75,28.244,88.99,30.091,87.469,31.611z M139.611,42.04c-1.52,1.52-3.366,2.281-5.539,2.281
|
||||
c-2.174,0-4.02-0.761-5.54-2.281s-2.281-3.367-2.281-5.54s0.761-4.019,2.281-5.54s3.366-2.281,5.54-2.281
|
||||
c2.173,0,4.019,0.76,5.539,2.281c1.521,1.52,2.281,3.367,2.281,5.54S141.133,40.52,139.611,42.04z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.5 KiB |
15
svgs/fa/coffee18.svg
Executable file
|
|
@ -0,0 +1,15 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 16.0.4, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="216px" height="146px" viewBox="0 0 216 146" enable-background="new 0 0 216 146" xml:space="preserve">
|
||||
<g>
|
||||
<path d="M38.503,124.246c4.074,4.074,8.989,6.111,14.747,6.111h104.286c5.758,0,10.674-2.037,14.747-6.111
|
||||
c4.072-4.073,6.109-8.989,6.109-14.746h-146C32.393,115.257,34.43,120.173,38.503,124.246z"/>
|
||||
<path d="M71.5,99.071h57.357c4.996,0,9.287-1.792,12.873-5.377c3.584-3.585,5.377-7.876,5.377-12.873v-2.607h5.213
|
||||
c8.637,0,16.011-3.055,22.121-9.165c6.109-6.111,9.166-13.484,9.166-22.12c0-8.637-3.057-16.011-9.166-22.121
|
||||
c-6.11-6.11-13.484-9.166-22.121-9.166H58.464c-1.412,0-2.634,0.517-3.666,1.548c-1.032,1.032-1.548,2.255-1.548,3.667v59.964
|
||||
c0,4.997,1.792,9.288,5.377,12.873S66.503,99.071,71.5,99.071z M147.107,31.286h5.215c4.345,0,8.039,1.521,11.08,4.562
|
||||
c3.041,3.042,4.562,6.735,4.562,11.081c0,4.344-1.521,8.038-4.562,11.081c-3.041,3.041-6.735,4.562-11.08,4.562h-5.215V31.286z"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.3 KiB |
26
svgs/fa/cog2.svg
Executable file
|
|
@ -0,0 +1,26 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 16.0.4, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="216px" height="146px" viewBox="0 0 216 146" enable-background="new 0 0 216 146" xml:space="preserve">
|
||||
<path d="M169.918,62.205c-0.436-0.571-1.005-0.911-1.711-1.019l-14.909-2.281c-0.815-2.607-1.929-5.268-3.341-7.984
|
||||
c0.977-1.358,2.443-3.272,4.398-5.744c1.955-2.472,3.34-4.277,4.155-5.418c0.435-0.598,0.651-1.222,0.651-1.874
|
||||
c0-0.76-0.189-1.357-0.57-1.792c-1.955-2.771-6.436-7.387-13.443-13.851c-0.65-0.543-1.33-0.814-2.035-0.814
|
||||
c-0.815,0-1.467,0.244-1.956,0.732l-11.568,8.718c-2.228-1.141-4.672-2.146-7.333-3.015l-2.281-14.99
|
||||
c-0.054-0.706-0.367-1.29-0.937-1.752c-0.571-0.462-1.235-0.692-1.997-0.692H98.955c-1.575,0-2.553,0.76-2.933,2.281
|
||||
c-0.706,2.715-1.494,7.766-2.363,15.153c-2.553,0.816-5.024,1.848-7.414,3.097l-11.243-8.718c-0.706-0.543-1.412-0.814-2.118-0.814
|
||||
c-1.195,0-3.761,1.941-7.699,5.825c-3.938,3.884-6.612,6.803-8.025,8.758c-0.489,0.706-0.733,1.331-0.733,1.874
|
||||
c0,0.652,0.271,1.304,0.814,1.955c3.639,4.4,6.545,8.147,8.718,11.244c-1.358,2.498-2.417,4.997-3.177,7.495L47.628,60.86
|
||||
c-0.597,0.109-1.113,0.462-1.548,1.06c-0.435,0.597-0.652,1.222-0.652,1.873v18.087c0,0.707,0.217,1.344,0.652,1.914
|
||||
c0.435,0.571,1.005,0.912,1.711,1.02l14.91,2.2c0.76,2.661,1.873,5.349,3.34,8.064c-0.977,1.358-2.444,3.272-4.399,5.744
|
||||
s-3.341,4.277-4.155,5.418c-0.435,0.599-0.652,1.222-0.652,1.874c0,0.706,0.19,1.33,0.57,1.873
|
||||
c2.118,2.934,6.599,7.497,13.443,13.688c0.598,0.598,1.277,0.896,2.037,0.896c0.815,0,1.494-0.244,2.037-0.732l11.488-8.719
|
||||
c2.228,1.141,4.672,2.146,7.333,3.016l2.281,14.99c0.055,0.706,0.367,1.29,0.937,1.752c0.57,0.463,1.236,0.692,1.996,0.692h18.087
|
||||
c1.577,0,2.554-0.76,2.935-2.281c0.705-2.716,1.492-7.766,2.361-15.153c2.553-0.815,5.025-1.848,7.414-3.097l11.244,8.8
|
||||
c0.76,0.488,1.467,0.732,2.118,0.732c1.194,0,3.747-1.927,7.657-5.784c3.912-3.856,6.6-6.79,8.065-8.8
|
||||
c0.489-0.543,0.734-1.167,0.734-1.873s-0.271-1.387-0.815-2.037c-3.91-4.78-6.816-8.527-8.718-11.243
|
||||
c1.086-2.01,2.146-4.481,3.178-7.414l15.072-2.28c0.651-0.109,1.196-0.463,1.63-1.061s0.65-1.223,0.65-1.874V64.119
|
||||
C170.57,63.413,170.354,62.776,169.918,62.205z M122.747,87.746c-4.073,4.074-8.989,6.111-14.747,6.111s-10.673-2.037-14.747-6.111
|
||||
c-4.073-4.073-6.11-8.988-6.11-14.746s2.036-10.673,6.11-14.747c4.074-4.073,8.99-6.11,14.747-6.11
|
||||
c5.758,0,10.674,2.037,14.747,6.11c4.073,4.074,6.11,8.989,6.11,14.747S126.82,83.673,122.747,87.746z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.7 KiB |
56
svgs/fa/cogs3.svg
Executable file
|
|
@ -0,0 +1,56 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 16.0.4, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="216px" height="146px" viewBox="0 0 216 146" enable-background="new 0 0 216 146" xml:space="preserve">
|
||||
<g>
|
||||
<path d="M124.865,102.207c0-0.543-0.19-1.086-0.57-1.629c-3.042-3.641-5.486-6.764-7.333-9.37c1.14-2.226,2.009-4.29,2.606-6.19
|
||||
l12.629-1.955c0.49-0.055,0.924-0.34,1.304-0.855c0.38-0.518,0.569-1.046,0.569-1.589V65.545c0-0.597-0.189-1.127-0.569-1.588
|
||||
s-0.842-0.747-1.385-0.854l-12.384-1.874c-0.599-1.847-1.522-4.075-2.771-6.681c0.814-1.196,2.037-2.826,3.667-4.889
|
||||
c1.629-2.064,2.771-3.53,3.422-4.399c0.38-0.543,0.57-1.06,0.57-1.548c0-1.467-3.911-5.812-11.731-13.036
|
||||
c-0.543-0.434-1.113-0.651-1.712-0.651c-0.651,0-1.194,0.188-1.63,0.57l-9.614,7.251c-2.226-1.14-4.263-1.982-6.11-2.526
|
||||
l-1.874-12.465c-0.053-0.543-0.325-1.019-0.814-1.426c-0.489-0.407-1.032-0.611-1.63-0.611H74.352
|
||||
c-1.249,0-2.064,0.652-2.444,1.955c-0.652,2.499-1.276,6.682-1.874,12.547c-2.335,0.76-4.426,1.629-6.273,2.607l-9.369-7.332
|
||||
c-0.543-0.381-1.113-0.57-1.711-0.57c-1.033,0-3.178,1.602-6.437,4.807c-3.259,3.204-5.487,5.621-6.681,7.251
|
||||
c-0.381,0.435-0.57,0.978-0.57,1.63c0,0.488,0.189,1.031,0.57,1.629c3.041,3.64,5.485,6.763,7.332,9.369
|
||||
c-1.14,2.228-2.009,4.291-2.606,6.192L31.66,62.857c-0.489,0.054-0.923,0.339-1.304,0.854c-0.38,0.517-0.57,1.046-0.57,1.589
|
||||
v15.072c0,0.598,0.19,1.128,0.57,1.589c0.381,0.462,0.842,0.72,1.386,0.774l12.384,1.955c0.652,2.064,1.603,4.291,2.852,6.681
|
||||
c-0.869,1.196-2.145,2.853-3.829,4.97c-1.685,2.119-2.798,3.559-3.341,4.318c-0.38,0.543-0.57,1.061-0.57,1.548
|
||||
c0,1.468,3.911,5.812,11.732,13.036c0.543,0.434,1.113,0.65,1.711,0.65c0.706,0,1.249-0.188,1.629-0.569l9.614-7.251
|
||||
c2.226,1.141,4.263,1.982,6.11,2.525l1.874,12.466c0.054,0.543,0.326,1.019,0.814,1.426c0.489,0.407,1.032,0.61,1.63,0.61h15.153
|
||||
c1.25,0,2.064-0.651,2.444-1.955c0.652-2.554,1.276-6.763,1.874-12.629c2.172-0.65,4.263-1.494,6.273-2.524l9.37,7.332
|
||||
c0.543,0.381,1.113,0.569,1.711,0.569c1.032,0,3.165-1.615,6.396-4.848c3.231-3.23,5.472-5.662,6.722-7.292
|
||||
C124.675,103.375,124.865,102.859,124.865,102.207z M96.675,87.706c-4.073,4.073-8.989,6.11-14.746,6.11
|
||||
c-5.758,0-10.674-2.037-14.747-6.11c-4.073-4.073-6.11-8.989-6.11-14.747c0-5.757,2.037-10.673,6.11-14.746
|
||||
c4.073-4.074,8.989-6.11,14.747-6.11c5.757,0,10.673,2.036,14.746,6.11c4.074,4.073,6.11,8.989,6.11,14.746
|
||||
C102.785,78.717,100.749,83.633,96.675,87.706z"/>
|
||||
<path d="M174.074,106.445c-0.705-1.575-1.52-2.987-2.443-4.237c2.77-6.138,4.154-9.886,4.154-11.243
|
||||
c0-0.216-0.107-0.407-0.325-0.57c-6.519-3.802-9.886-5.703-10.103-5.703l-0.489,0.164c-2.226,2.227-4.726,5.269-7.495,9.125
|
||||
c-1.086-0.108-1.9-0.164-2.443-0.164c-0.545,0-1.358,0.056-2.445,0.164c-0.758-1.142-2.172-2.975-4.235-5.5
|
||||
s-3.313-3.789-3.748-3.789c-0.108,0-0.923,0.435-2.444,1.305c-1.521,0.869-3.123,1.792-4.807,2.771
|
||||
c-1.686,0.979-2.634,1.521-2.852,1.63c-0.219,0.162-0.326,0.353-0.326,0.569c0,1.358,1.385,5.104,4.154,11.243
|
||||
c-0.922,1.25-1.737,2.662-2.443,4.236c-8.094,0.814-12.141,1.656-12.141,2.525v11.406c0,0.869,4.047,1.711,12.141,2.525
|
||||
c0.65,1.466,1.466,2.879,2.443,4.235c-2.769,6.138-4.154,9.886-4.154,11.244c0,0.216,0.107,0.407,0.326,0.57
|
||||
c6.625,3.856,9.994,5.784,10.103,5.784c0.435,0,1.685-1.276,3.748-3.829c2.063-2.554,3.476-4.399,4.235-5.54
|
||||
c1.086,0.107,1.9,0.162,2.445,0.162c0.543,0,1.357-0.055,2.443-0.162c0.759,1.141,2.172,2.986,4.236,5.54
|
||||
c2.063,2.553,3.312,3.829,3.748,3.829c0.108,0,3.477-1.929,10.103-5.784c0.218-0.163,0.325-0.353,0.325-0.57
|
||||
c0-1.358-1.385-5.106-4.154-11.244c0.977-1.356,1.792-2.769,2.443-4.235c8.094-0.814,12.141-1.656,12.141-2.525v-11.406
|
||||
C186.215,108.102,182.168,107.26,174.074,106.445z M162.301,122.047c-2.035,2.037-4.494,3.057-7.373,3.057s-5.337-1.02-7.373-3.057
|
||||
c-2.037-2.037-3.056-4.494-3.056-7.373c0-2.824,1.033-5.27,3.097-7.333s4.508-3.096,7.332-3.096s5.27,1.032,7.334,3.096
|
||||
c2.063,2.063,3.096,4.509,3.096,7.333C165.357,117.553,164.339,120.01,162.301,122.047z"/>
|
||||
<path d="M174.074,23.016c-0.705-1.575-1.52-2.987-2.443-4.237c2.77-6.137,4.154-9.885,4.154-11.243c0-0.216-0.107-0.407-0.325-0.57
|
||||
c-6.519-3.802-9.886-5.703-10.103-5.703l-0.489,0.163c-2.226,2.228-4.726,5.269-7.495,9.125c-1.086-0.108-1.9-0.163-2.443-0.163
|
||||
c-0.545,0-1.358,0.055-2.445,0.163c-0.758-1.141-2.172-2.974-4.235-5.499c-2.063-2.526-3.313-3.789-3.748-3.789
|
||||
c-0.108,0-0.923,0.434-2.444,1.304c-1.521,0.87-3.123,1.793-4.807,2.771c-1.686,0.978-2.634,1.521-2.852,1.629
|
||||
c-0.219,0.163-0.326,0.353-0.326,0.57c0,1.358,1.385,5.106,4.154,11.243c-0.922,1.25-1.737,2.662-2.443,4.237
|
||||
c-8.094,0.814-12.141,1.656-12.141,2.525v11.406c0,0.869,4.047,1.711,12.141,2.525c0.65,1.466,1.466,2.879,2.443,4.237
|
||||
c-2.769,6.138-4.154,9.885-4.154,11.243c0,0.216,0.107,0.407,0.326,0.57c6.625,3.856,9.994,5.784,10.103,5.784
|
||||
c0.435,0,1.685-1.276,3.748-3.829c2.063-2.553,3.476-4.399,4.235-5.54c1.086,0.108,1.9,0.163,2.445,0.163
|
||||
c0.543,0,1.357-0.055,2.443-0.163c0.759,1.141,2.172,2.987,4.236,5.54c2.063,2.553,3.312,3.829,3.748,3.829
|
||||
c0.108,0,3.477-1.928,10.103-5.784c0.218-0.163,0.325-0.353,0.325-0.57c0-1.358-1.385-5.105-4.154-11.243
|
||||
c0.977-1.358,1.792-2.77,2.443-4.237c8.094-0.814,12.141-1.656,12.141-2.525V25.542C186.215,24.673,182.168,23.831,174.074,23.016z
|
||||
M162.301,38.618c-2.035,2.037-4.494,3.056-7.373,3.056s-5.337-1.019-7.373-3.056c-2.037-2.036-3.056-4.494-3.056-7.373
|
||||
c0-2.824,1.033-5.269,3.097-7.333s4.508-3.096,7.332-3.096s5.27,1.033,7.334,3.096c2.063,2.064,3.096,4.509,3.096,7.333
|
||||
C165.357,34.124,164.339,36.582,162.301,38.618z"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 5.7 KiB |
17
svgs/fa/collapse2.svg
Executable file
|
|
@ -0,0 +1,17 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 16.0.4, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="216px" height="146px" viewBox="0 0 216 146" enable-background="new 0 0 216 146" xml:space="preserve">
|
||||
<g>
|
||||
<path d="M163.686,17.313c-4.588-4.589-10.115-6.884-16.578-6.884H68.893c-6.463,0-11.99,2.295-16.58,6.884
|
||||
c-4.589,4.59-6.884,10.117-6.884,16.58v78.214c0,6.463,2.295,11.99,6.884,16.58c4.59,4.59,10.117,6.885,16.58,6.885h78.214
|
||||
c6.463,0,11.99-2.295,16.578-6.885c4.59-4.59,6.885-10.117,6.885-16.58V33.893C170.57,27.43,168.275,21.902,163.686,17.313z
|
||||
M149.714,112.107c0,0.705-0.258,1.316-0.774,1.832c-0.516,0.516-1.127,0.773-1.832,0.773H68.893c-0.706,0-1.317-0.257-1.833-0.773
|
||||
s-0.774-1.127-0.774-1.832V33.892c0-0.706,0.258-1.317,0.774-1.833c0.516-0.515,1.127-0.774,1.833-0.774h78.214
|
||||
c0.707,0,1.318,0.258,1.834,0.774c0.515,0.516,0.772,1.127,0.772,1.833V112.107z"/>
|
||||
<path d="M134.073,52.142H81.93c-2.173,0-3.721,0.952-4.644,2.852c-0.978,1.901-0.842,3.693,0.407,5.377l26.072,36.5
|
||||
c1.031,1.467,2.444,2.199,4.236,2.199c1.793,0,3.205-0.732,4.235-2.199l26.072-36.5c1.25-1.684,1.385-3.476,0.407-5.377
|
||||
C137.792,53.094,136.244,52.143,134.073,52.142z"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.4 KiB |
16
svgs/fa/comment32.svg
Executable file
|
|
@ -0,0 +1,16 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 16.0.4, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="216px" height="146px" viewBox="0 0 216 146" enable-background="new 0 0 216 146" xml:space="preserve">
|
||||
<path d="M171.225,36.366c-6.519-8.011-15.373-14.339-26.561-18.983c-11.188-4.644-23.41-6.966-36.663-6.966
|
||||
c-9.886,0-19.337,1.371-28.353,4.114c-9.016,2.743-16.783,6.45-23.301,11.121c-6.519,4.671-11.705,10.225-15.562,16.661
|
||||
S35,55.498,35,62.559c0,8.147,2.457,15.781,7.373,22.896s11.637,13.09,20.165,17.924c-0.598,2.172-1.304,4.236-2.119,6.191
|
||||
s-1.548,3.559-2.2,4.808c-0.652,1.249-1.534,2.634-2.648,4.155c-1.113,1.521-1.955,2.594-2.525,3.218
|
||||
c-0.57,0.625-1.507,1.658-2.811,3.096c-1.303,1.44-2.145,2.377-2.525,2.812c-0.055,0.026-0.272,0.271-0.652,0.733
|
||||
c-0.38,0.461-0.57,0.691-0.57,0.691l-0.489,0.732c-0.272,0.408-0.394,0.666-0.367,0.773c0.027,0.107-0.027,0.38-0.163,0.814
|
||||
c-0.136,0.435-0.122,0.761,0.041,0.979v0.081c0.218,0.978,0.693,1.765,1.426,2.362c0.733,0.597,1.562,0.842,2.485,0.732
|
||||
c3.531-0.435,6.627-1.03,9.288-1.791c14.231-3.641,26.724-10.211,37.478-19.718c4.073,0.435,8.011,0.652,11.813,0.652
|
||||
c13.253,0,25.475-2.322,36.663-6.968c11.188-4.643,20.042-10.971,26.56-18.981C177.741,80.742,181,72.01,181,62.559
|
||||
C181,53.108,177.741,44.376,171.225,36.366z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.5 KiB |
20
svgs/fa/comment33.svg
Executable file
|
|
@ -0,0 +1,20 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 16.0.4, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="216px" height="146px" viewBox="0 0 216 146" enable-background="new 0 0 216 146" xml:space="preserve">
|
||||
<path d="M171.223,36.378c-6.518-8.011-15.371-14.339-26.56-18.983s-23.41-6.966-36.663-6.966s-25.474,2.322-36.663,6.966
|
||||
s-20.042,10.971-26.56,18.983C38.259,44.389,35,53.12,35,62.571c0,8.147,2.457,15.78,7.373,22.895
|
||||
c4.916,7.115,11.637,13.091,20.165,17.925c-0.598,2.172-1.304,4.236-2.119,6.192c-0.815,1.955-1.548,3.558-2.2,4.808
|
||||
c-0.652,1.248-1.534,2.634-2.648,4.153c-1.113,1.522-1.955,2.595-2.525,3.22c-0.57,0.625-1.507,1.656-2.811,3.096
|
||||
c-1.303,1.439-2.145,2.377-2.525,2.811c-0.055,0.027-0.272,0.271-0.652,0.734c-0.38,0.461-0.57,0.691-0.57,0.691l-0.489,0.733
|
||||
c-0.272,0.406-0.394,0.665-0.367,0.772c0.027,0.109-0.027,0.381-0.163,0.814c-0.136,0.436-0.122,0.762,0.041,0.979v0.082
|
||||
c0.217,0.923,0.651,1.67,1.303,2.24c0.652,0.569,1.386,0.854,2.2,0.854h0.408c3.531-0.435,6.627-1.032,9.288-1.792
|
||||
c14.231-3.639,26.724-10.211,37.478-19.717c4.073,0.434,8.011,0.651,11.813,0.651c13.253,0,25.475-2.321,36.663-6.967
|
||||
c11.188-4.644,20.042-10.97,26.56-18.981C177.741,80.754,181,72.022,181,62.571C181,53.121,177.741,44.389,171.223,36.378z
|
||||
M162.057,83.347c-5.678,6.408-13.336,11.501-22.977,15.275s-20.002,5.662-31.082,5.662c-3.313,0-6.843-0.216-10.591-0.651
|
||||
l-4.644-0.488l-3.503,3.097c-6.68,5.866-14.149,10.51-22.405,13.932c2.498-4.399,4.399-9.071,5.703-14.013l2.2-7.822l-7.088-4.072
|
||||
c-7.061-4.021-12.533-8.787-16.417-14.3c-3.884-5.513-5.825-11.312-5.825-17.395c0-7.441,2.838-14.366,8.514-20.775
|
||||
c5.677-6.409,13.335-11.501,22.976-15.276S96.919,20.857,108,20.857c11.08,0,21.439,1.888,31.08,5.663s17.299,8.867,22.977,15.276
|
||||
c5.676,6.409,8.514,13.334,8.514,20.775S167.732,76.938,162.057,83.347z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2 KiB |
33
svgs/fa/comments16.svg
Executable file
|
|
@ -0,0 +1,33 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 16.0.4, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="216px" height="146px" viewBox="0 0 216 146" enable-background="new 0 0 216 146" xml:space="preserve">
|
||||
<g>
|
||||
<path d="M121.158,93.486c8.826-3.721,15.792-8.786,20.896-15.195c5.106-6.409,7.659-13.388,7.659-20.938
|
||||
c0-7.55-2.553-14.529-7.659-20.939c-5.104-6.409-12.07-11.474-20.896-15.195c-8.826-3.721-18.426-5.581-28.801-5.581
|
||||
c-10.374,0-19.974,1.861-28.801,5.582c-8.826,3.721-15.792,8.786-20.897,15.195C37.553,42.824,35,49.803,35,57.353
|
||||
c0,6.463,1.93,12.549,5.786,18.251c3.856,5.703,9.152,10.511,15.887,14.421c-0.543,1.305-1.1,2.498-1.67,3.586
|
||||
c-0.571,1.086-1.249,2.131-2.037,3.137c-0.788,1.005-1.398,1.792-1.833,2.361c-0.435,0.57-1.141,1.372-2.119,2.403
|
||||
c-0.978,1.032-1.603,1.711-1.874,2.037c0-0.056-0.109,0.067-0.326,0.366c-0.218,0.299-0.34,0.434-0.367,0.408
|
||||
c-0.027-0.029-0.136,0.107-0.326,0.406s-0.285,0.448-0.285,0.448l-0.204,0.407c-0.081,0.162-0.136,0.324-0.163,0.488
|
||||
c-0.027,0.162-0.041,0.34-0.041,0.529s0.027,0.366,0.082,0.529c0.109,0.706,0.421,1.275,0.937,1.711
|
||||
c0.516,0.434,1.072,0.65,1.67,0.65h0.245c2.715-0.379,5.051-0.814,7.006-1.303c8.365-2.173,15.915-5.649,22.65-10.429
|
||||
c4.888,0.869,9.668,1.304,14.339,1.304C102.731,99.066,112.332,97.206,121.158,93.486z M75.574,86.684l-3.585,2.525
|
||||
c-1.521,1.031-3.204,2.092-5.051,3.178l2.852-6.845l-7.903-4.562c-5.215-3.041-9.261-6.626-12.14-10.754
|
||||
c-2.879-4.128-4.318-8.419-4.318-12.873c0-5.541,2.133-10.728,6.396-15.562c4.263-4.834,10.007-8.663,17.231-11.488
|
||||
c7.224-2.824,14.991-4.237,23.301-4.237s16.078,1.413,23.301,4.237c7.224,2.825,12.968,6.654,17.232,11.488
|
||||
c4.264,4.834,6.395,10.021,6.395,15.562c0,5.54-2.131,10.727-6.395,15.561c-4.264,4.835-10.008,8.664-17.232,11.488
|
||||
c-7.223,2.824-14.99,4.236-23.301,4.236c-4.073,0-8.228-0.381-12.465-1.141L75.574,86.684z"/>
|
||||
<path d="M175.213,96.497c3.857-5.677,5.785-11.772,5.785-18.29c0-6.681-2.037-12.928-6.109-18.739
|
||||
c-4.074-5.811-9.615-10.646-16.621-14.502c1.248,4.073,1.873,8.201,1.873,12.384c0,7.278-1.818,14.176-5.459,20.694
|
||||
c-3.639,6.517-8.854,12.274-15.643,17.272c-6.301,4.562-13.471,8.065-21.51,10.51c-8.037,2.443-16.429,3.666-25.174,3.666
|
||||
c-1.629,0-4.019-0.108-7.169-0.325c10.917,7.169,23.736,10.754,38.455,10.754c4.672,0,9.451-0.435,14.34-1.304
|
||||
c6.734,4.781,14.285,8.256,22.649,10.429c1.955,0.49,4.291,0.924,7.007,1.304c0.651,0.055,1.25-0.135,1.793-0.57
|
||||
c0.543-0.435,0.896-1.031,1.059-1.791c-0.026-0.326,0-0.504,0.082-0.53c0.08-0.026,0.066-0.203-0.041-0.529
|
||||
c-0.108-0.326-0.163-0.489-0.163-0.489l-0.203-0.406c-0.056-0.108-0.149-0.258-0.285-0.448c-0.136-0.188-0.244-0.325-0.326-0.407
|
||||
c-0.081-0.081-0.202-0.217-0.366-0.406c-0.162-0.189-0.271-0.312-0.326-0.367c-0.271-0.325-0.895-1.004-1.873-2.036
|
||||
c-0.978-1.032-1.684-1.833-2.118-2.403s-1.046-1.357-1.833-2.363c-0.787-1.004-1.467-2.05-2.037-3.137
|
||||
c-0.57-1.086-1.127-2.281-1.67-3.584C166.062,106.97,171.359,102.177,175.213,96.497z"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 3.2 KiB |
18
svgs/fa/compass41.svg
Executable file
|
|
@ -0,0 +1,18 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 16.0.4, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="216px" height="146px" viewBox="0 0 216 146" enable-background="new 0 0 216 146" xml:space="preserve">
|
||||
<g>
|
||||
<path d="M162.18,41.592c-5.595-9.586-13.185-17.176-22.771-22.771c-9.588-5.595-20.055-8.392-31.408-8.392
|
||||
c-11.352,0-21.822,2.797-31.408,8.392c-9.587,5.594-17.177,13.184-22.772,22.771C48.225,51.179,45.428,61.649,45.428,73
|
||||
c0,11.352,2.798,21.82,8.392,31.408c5.595,9.585,13.185,17.176,22.772,22.771c9.587,5.595,20.056,8.392,31.408,8.392
|
||||
c11.352,0,21.822-2.797,31.408-8.392c9.586-5.594,17.176-13.185,22.771-22.771c5.594-9.587,8.391-20.057,8.391-31.408
|
||||
C170.57,61.648,167.773,51.178,162.18,41.592z M146.374,95.242c-3.965,6.789-9.342,12.167-16.132,16.132
|
||||
c-6.789,3.965-14.203,5.946-22.242,5.946c-8.038,0-15.452-1.981-22.242-5.946c-6.789-3.965-12.166-9.343-16.131-16.132
|
||||
C65.661,88.453,63.679,81.039,63.679,73s1.983-15.453,5.948-22.242c3.964-6.789,9.342-12.167,16.131-16.132
|
||||
S99.961,28.679,108,28.679s15.453,1.982,22.242,5.947c6.79,3.965,12.167,9.343,16.132,16.132
|
||||
c3.965,6.789,5.946,14.203,5.946,22.242S150.339,88.453,146.374,95.242z"/>
|
||||
<path d="M87.143,105.507l41.714-20.856V40.492L87.143,61.349V105.507z M97.572,67.785l20.858,10.429L97.572,88.643V67.785z"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.5 KiB |
15
svgs/fa/computer74.svg
Executable file
|
|
@ -0,0 +1,15 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 16.0.4, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="216px" height="146px" viewBox="0 0 216 146" enable-background="new 0 0 216 146" xml:space="preserve">
|
||||
<path d="M151.1,19.472c-2.554-2.553-5.621-3.829-9.207-3.829H74.107c-3.585,0-6.654,1.276-9.207,3.829
|
||||
c-2.553,2.554-3.829,5.622-3.829,9.207v88.644c0,3.585,1.276,6.651,3.829,9.206c2.553,2.554,5.622,3.828,9.207,3.828h67.786
|
||||
c3.586,0,6.653-1.274,9.207-3.828c2.553-2.555,3.83-5.622,3.83-9.206V28.679C154.93,25.094,153.65,22.025,151.1,19.472z
|
||||
M111.666,123.596c-1.031,1.031-2.253,1.547-3.666,1.547s-2.635-0.516-3.667-1.547c-1.032-1.033-1.548-2.255-1.548-3.666
|
||||
c0-1.412,0.516-2.636,1.548-3.666c1.033-1.033,2.255-1.55,3.667-1.55s2.635,0.517,3.666,1.55c1.032,1.03,1.549,2.254,1.549,3.666
|
||||
C113.215,121.341,112.698,122.562,111.666,123.596z M144.5,106.893c0,0.707-0.259,1.317-0.773,1.834
|
||||
c-0.517,0.517-1.127,0.773-1.834,0.773H74.107c-0.706,0-1.317-0.257-1.833-0.773c-0.516-0.516-0.774-1.127-0.774-1.834V28.679
|
||||
c0-0.706,0.258-1.317,0.774-1.833c0.516-0.516,1.127-0.774,1.833-0.774h67.786c0.707,0,1.317,0.257,1.834,0.774
|
||||
c0.516,0.516,0.773,1.127,0.773,1.833V106.893z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.4 KiB |
15
svgs/fa/copy10.svg
Executable file
|
|
@ -0,0 +1,15 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 16.0.4, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="216px" height="146px" viewBox="0 0 216 146" enable-background="new 0 0 216 146" xml:space="preserve">
|
||||
<path d="M178.719,33.567c-1.521-1.52-3.367-2.281-5.539-2.281h-33.895c-3.258,0-6.735,1.086-10.428,3.259V7.822
|
||||
c0-2.173-0.76-4.021-2.281-5.541S123.209,0,121.035,0H87.143c-2.173,0-4.563,0.543-7.17,1.629s-4.671,2.39-6.192,3.911L40.54,38.781
|
||||
c-1.521,1.521-2.825,3.585-3.911,6.192C35.543,47.581,35,49.97,35,52.143v54.75c0,2.174,0.76,4.021,2.281,5.541
|
||||
c1.521,1.521,3.368,2.281,5.54,2.281h44.322v23.465c0,2.172,0.76,4.019,2.281,5.539c1.52,1.521,3.367,2.281,5.54,2.281h78.216
|
||||
c2.172,0,4.019-0.76,5.539-2.281c1.521-1.52,2.281-3.367,2.281-5.539V39.108C181,36.935,180.24,35.088,178.719,33.567z
|
||||
M128.857,48.64V73h-24.36L128.857,48.64z M76.714,17.354v24.36h-24.36L76.714,17.354z M92.683,70.067
|
||||
c-1.521,1.521-2.825,3.585-3.911,6.193s-1.629,4.996-1.629,7.17v20.855H45.429V52.143h33.892c2.173,0,4.02-0.76,5.541-2.281
|
||||
c1.52-1.521,2.281-3.368,2.281-5.54V10.429h31.287v33.893L92.683,70.067z M170.57,135.572h-73V83.428h33.894
|
||||
c2.172,0,4.018-0.76,5.539-2.281c1.521-1.52,2.281-3.367,2.281-5.539V41.714h31.285V135.572z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.5 KiB |
11
svgs/fa/correct8.svg
Executable file
|
|
@ -0,0 +1,11 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 16.0.4, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="216px" height="146px" viewBox="0 0 216 146" enable-background="new 0 0 216 146" xml:space="preserve">
|
||||
<path d="M168.861,37.966l-11.08-11.08c-1.52-1.521-3.368-2.281-5.54-2.281c-2.173,0-4.021,0.76-5.541,2.281L93.254,80.414
|
||||
L69.301,56.379c-1.521-1.521-3.368-2.281-5.54-2.281c-2.173,0-4.02,0.76-5.541,2.281l-11.08,11.08
|
||||
c-1.521,1.521-2.281,3.368-2.281,5.541c0,2.172,0.76,4.02,2.281,5.54l29.493,29.493l11.081,11.08c1.52,1.521,3.367,2.281,5.54,2.281
|
||||
c2.172,0,4.019-0.761,5.54-2.281l11.081-11.08l58.986-58.986c1.52-1.521,2.281-3.368,2.281-5.541
|
||||
C171.143,41.334,170.381,39.487,168.861,37.966z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 977 B |
33
svgs/fa/couple35.svg
Executable file
|
|
@ -0,0 +1,33 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 16.0.4, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="216px" height="146px" viewBox="0 0 216 146" enable-background="new 0 0 216 146" xml:space="preserve">
|
||||
<g>
|
||||
<path d="M101.973,77.073c2.498-5.92,4.616-10.564,6.354-13.932c1.304-2.498,2.526-4.603,3.667-6.314
|
||||
c1.14-1.711,2.525-3.381,4.154-5.01c1.631-1.63,3.504-2.853,5.623-3.667c2.117-0.815,4.48-1.222,7.088-1.222h20.856v15.643
|
||||
c0,0.706,0.257,1.317,0.773,1.833c0.516,0.516,1.127,0.774,1.833,0.774c0.761,0,1.386-0.244,1.873-0.733l26.072-26.071
|
||||
C180.756,37.885,181,37.261,181,36.5s-0.244-1.385-0.734-1.876l-25.99-25.99c-0.651-0.543-1.305-0.813-1.955-0.813
|
||||
c-0.762,0-1.385,0.244-1.875,0.733c-0.487,0.489-0.731,1.113-0.731,1.874V26.07h-20.856c-3.694,0-7.17,0.449-10.43,1.345
|
||||
c-3.259,0.896-6.152,2.036-8.677,3.422c-2.526,1.385-4.97,3.245-7.333,5.581c-2.363,2.335-4.373,4.59-6.029,6.762
|
||||
c-1.656,2.172-3.395,4.888-5.214,8.147c-1.819,3.259-3.286,6.111-4.399,8.555c-1.114,2.444-2.458,5.459-4.033,9.044
|
||||
c-2.499,5.92-4.617,10.565-6.355,13.932c-1.303,2.498-2.526,4.604-3.666,6.314c-1.14,1.711-2.526,3.381-4.155,5.01
|
||||
c-1.63,1.631-3.504,2.853-5.622,3.668c-2.118,0.814-4.481,1.222-7.088,1.222h-18.25c-0.761,0-1.386,0.243-1.874,0.733
|
||||
c-0.488,0.488-0.733,1.112-0.733,1.873v15.644c0,0.761,0.246,1.386,0.735,1.875c0.489,0.489,1.114,0.733,1.874,0.733h18.25
|
||||
c3.694,0,7.17-0.449,10.429-1.346c3.259-0.896,6.152-2.036,8.677-3.422c2.526-1.385,4.97-3.245,7.333-5.581
|
||||
c2.362-2.335,4.373-4.59,6.029-6.762c1.656-2.173,3.394-4.888,5.214-8.147c1.819-3.259,3.286-6.111,4.399-8.555
|
||||
C99.054,83.673,100.398,80.658,101.973,77.073z"/>
|
||||
<path d="M37.607,46.927h18.25c2.39,0,4.603,0.394,6.64,1.182s3.748,1.738,5.133,2.852c1.385,1.114,2.77,2.648,4.155,4.603
|
||||
c1.385,1.956,2.485,3.681,3.3,5.174c0.814,1.494,1.819,3.463,3.014,5.907c4.183-9.831,7.903-17.245,11.162-22.242
|
||||
c-8.69-12.221-19.825-18.332-33.404-18.332h-18.25c-0.761,0-1.386,0.244-1.874,0.733C35.245,27.293,35,27.917,35,28.678v15.643
|
||||
c0,0.761,0.244,1.384,0.733,1.873C36.222,46.683,36.847,46.927,37.607,46.927z"/>
|
||||
<path d="M154.277,81.637c-0.652-0.543-1.305-0.813-1.957-0.813c-0.76,0-1.385,0.244-1.873,0.733
|
||||
c-0.488,0.488-0.732,1.113-0.732,1.873v15.644h-20.857c-2.391,0-4.604-0.394-6.641-1.183c-2.037-0.787-3.748-1.737-5.133-2.852
|
||||
c-1.384-1.113-2.77-2.648-4.154-4.604c-1.386-1.955-2.486-3.68-3.301-5.174c-0.814-1.492-1.819-3.463-3.014-5.906
|
||||
c-4.182,9.777-7.875,17.19-11.08,22.242c1.466,2.119,2.987,4.006,4.562,5.662c1.575,1.656,3.069,3.109,4.481,4.358
|
||||
s3.015,2.336,4.807,3.259c1.793,0.924,3.367,1.697,4.727,2.322s3.07,1.127,5.133,1.507c2.064,0.38,3.802,0.666,5.214,0.854
|
||||
c1.412,0.19,3.341,0.326,5.785,0.408s4.426,0.108,5.946,0.082c1.522-0.027,3.722-0.056,6.601-0.082s5.188-0.041,6.926-0.041v15.644
|
||||
c0,0.706,0.257,1.317,0.773,1.833c0.516,0.516,1.127,0.773,1.833,0.773c0.761,0,1.386-0.244,1.873-0.732l26.072-26.071
|
||||
c0.488-0.489,0.732-1.113,0.732-1.874s-0.244-1.385-0.734-1.873L154.277,81.637z"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 3.2 KiB |
16
svgs/fa/credit40.svg
Executable file
|
|
@ -0,0 +1,16 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 16.0.4, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="216px" height="146px" viewBox="0 0 216 146" enable-background="new 0 0 216 146" xml:space="preserve">
|
||||
<g>
|
||||
<path d="M182.385,14.258c-2.553-2.553-5.621-3.829-9.205-3.829H42.821c-3.585,0-6.653,1.276-9.207,3.829
|
||||
c-2.553,2.553-3.829,5.621-3.829,9.206v99.071c0,3.585,1.276,6.654,3.829,9.207c2.554,2.553,5.622,3.829,9.207,3.829H173.18
|
||||
c3.584,0,6.652-1.276,9.205-3.829s3.83-5.622,3.83-9.207V23.464C186.215,19.879,184.938,16.811,182.385,14.258z M175.785,122.536
|
||||
c0,0.707-0.258,1.317-0.773,1.834c-0.516,0.515-1.127,0.772-1.832,0.772H42.821c-0.706,0-1.317-0.258-1.833-0.773
|
||||
c-0.516-0.518-0.774-1.127-0.774-1.834V73h135.571V122.536z M175.785,41.713H40.214v-18.25c0-0.706,0.257-1.316,0.774-1.833
|
||||
c0.516-0.515,1.127-0.773,1.833-0.773H173.18c0.705,0,1.316,0.257,1.832,0.773c0.516,0.517,0.773,1.127,0.773,1.833V41.713z"/>
|
||||
<rect x="50.643" y="104.285" width="20.857" height="10.429"/>
|
||||
<rect x="81.929" y="104.285" width="31.286" height="10.429"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.3 KiB |
5
svgs/fa/credits.txt
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
This set of icons is the Font-Awesome library in SVG format, provided by the author Dave Gandy here:
|
||||
http://www.flaticon.com/packs/font-awesome
|
||||
|
||||
It's licensed under a Creative Commons license. In accordance with the license these SVG files have been unmodified, and the existence of these icons in this project does not constitute an endorsement from the creators of Font Awesome.
|
||||
http://creativecommons.org/licenses/by/3.0/
|
||||
15
svgs/fa/crop4.svg
Executable file
|
|
@ -0,0 +1,15 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 16.0.4, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="216px" height="146px" viewBox="0 0 216 146" enable-background="new 0 0 216 146" xml:space="preserve">
|
||||
<path d="M173.18,99.07h-18.25V29.738l20.123-20.042c0.488-0.543,0.732-1.167,0.732-1.874s-0.244-1.331-0.732-1.874
|
||||
c-0.543-0.488-1.168-0.733-1.873-0.733c-0.707,0-1.332,0.244-1.875,0.733l-20.043,20.124H81.929V7.822
|
||||
c0-0.761-0.244-1.386-0.733-1.874c-0.489-0.488-1.113-0.733-1.874-0.733H63.679c-0.76,0-1.386,0.244-1.874,0.733
|
||||
c-0.488,0.489-0.733,1.114-0.733,1.874v18.25h-18.25c-0.761,0-1.386,0.244-1.874,0.733c-0.488,0.489-0.733,1.114-0.733,1.874v15.643
|
||||
c0,0.761,0.244,1.386,0.733,1.874c0.489,0.488,1.114,0.733,1.874,0.733h18.25v70.394c0,0.761,0.244,1.386,0.733,1.873
|
||||
c0.489,0.488,1.114,0.733,1.874,0.733h70.394v18.25c0,0.761,0.243,1.386,0.731,1.874s1.113,0.732,1.875,0.732h15.644
|
||||
c0.76,0,1.385-0.244,1.872-0.732c0.488-0.488,0.734-1.113,0.734-1.874v-18.25h18.25c0.76,0,1.385-0.245,1.873-0.733
|
||||
c0.488-0.487,0.732-1.112,0.732-1.873v-15.644c0-0.761-0.244-1.387-0.732-1.875C174.564,99.316,173.939,99.07,173.18,99.07z
|
||||
M81.929,46.928h48.478L81.929,95.405V46.928z M134.073,99.071H85.595l48.478-48.478V99.071z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.5 KiB |
17
svgs/fa/cross41.svg
Executable file
|
|
@ -0,0 +1,17 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 16.0.4, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="216px" height="146px" viewBox="0 0 216 146" enable-background="new 0 0 216 146" xml:space="preserve">
|
||||
<path d="M162.18,41.592c-5.595-9.586-13.185-17.176-22.771-22.771c-9.588-5.595-20.055-8.392-31.408-8.392
|
||||
c-11.352,0-21.822,2.797-31.408,8.392c-9.587,5.594-17.177,13.184-22.772,22.771C48.225,51.179,45.428,61.649,45.428,73
|
||||
c0,11.352,2.798,21.82,8.392,31.408c5.595,9.585,13.185,17.176,22.772,22.771c9.587,5.595,20.056,8.392,31.408,8.392
|
||||
c11.352,0,21.822-2.797,31.408-8.392c9.586-5.594,17.176-13.185,22.771-22.771c5.594-9.587,8.391-20.057,8.391-31.408
|
||||
C170.57,61.648,167.773,51.178,162.18,41.592z M137.493,87.746c1.032,1.031,1.549,2.255,1.549,3.667
|
||||
c0,1.466-0.517,2.716-1.549,3.747l-7.332,7.333c-1.032,1.032-2.281,1.548-3.748,1.548c-1.412,0-2.636-0.516-3.666-1.548L108,87.746
|
||||
l-14.747,14.747c-1.032,1.032-2.254,1.548-3.666,1.548c-1.467,0-2.716-0.516-3.748-1.548l-7.333-7.333
|
||||
c-1.032-1.031-1.548-2.281-1.548-3.747c0-1.412,0.516-2.636,1.548-3.667L93.253,73L78.506,58.253
|
||||
c-1.032-1.031-1.548-2.254-1.548-3.666c0-1.467,0.516-2.716,1.548-3.748l7.333-7.332c1.032-1.032,2.281-1.548,3.748-1.548
|
||||
c1.412,0,2.634,0.516,3.666,1.548L108,58.253l14.747-14.746c1.03-1.032,2.254-1.548,3.666-1.548c1.467,0,2.716,0.516,3.748,1.548
|
||||
l7.332,7.332c1.032,1.032,1.549,2.281,1.549,3.748c0,1.412-0.517,2.635-1.549,3.666L122.747,73L137.493,87.746z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.7 KiB |
9
svgs/fa/css3.svg
Executable file
|
|
@ -0,0 +1,9 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 16.0.4, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="216px" height="146px" viewBox="0 0 216 146" enable-background="new 0 0 216 146" xml:space="preserve">
|
||||
<polygon points="57.405,7.821 52.598,32.019 151.018,32.019 147.922,47.58 49.421,47.58 44.695,71.778 143.115,71.778
|
||||
137.574,99.396 97.979,112.514 63.597,99.396 65.96,87.42 41.762,87.42 35.977,116.425 92.846,138.178 158.35,116.425
|
||||
180.021,7.821 "/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 736 B |
11
svgs/fa/curved8.svg
Executable file
|
|
@ -0,0 +1,11 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 16.0.4, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="216px" height="146px" viewBox="0 0 216 146" enable-background="new 0 0 216 146" xml:space="preserve">
|
||||
<path d="M149.206,91.658c-0.979-2.01-2.554-3.016-4.726-3.016h-15.645V18.331c0-0.76-0.257-1.398-0.773-1.914
|
||||
s-1.127-0.774-1.832-0.774H68.872c-1.086,0-1.874,0.516-2.364,1.547c-0.489,1.087-0.38,2.01,0.326,2.771L79.87,35.604
|
||||
c0.598,0.597,1.277,0.896,2.037,0.896h26.075v52.143H92.339c-2.173,0-3.748,1.006-4.726,3.016c-0.924,2.063-0.679,3.937,0.733,5.621
|
||||
l26.071,31.285c0.978,1.195,2.308,1.793,3.992,1.793c1.684,0,3.014-0.598,3.991-1.793l26.072-31.285
|
||||
C149.938,95.542,150.184,93.668,149.206,91.658z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 987 B |
35
svgs/fa/cut18.svg
Executable file
|
|
@ -0,0 +1,35 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 16.0.4, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="216px" height="146px" viewBox="0 0 216 146" enable-background="new 0 0 216 146" xml:space="preserve">
|
||||
<g>
|
||||
<path d="M178.959,105.426L137.652,73l41.306-32.431c1.521-1.085,2.199-2.605,2.037-4.562c-0.272-1.9-1.224-3.286-2.853-4.155
|
||||
l-10.429-5.214c-0.706-0.38-1.493-0.57-2.362-0.57c-0.922,0-1.765,0.217-2.525,0.651L106.61,58.25l-8.962-5.377
|
||||
c-0.435-0.217-0.761-0.352-0.978-0.407c0.761-2.661,1.032-5.296,0.815-7.903c-0.38-4.182-1.901-8.202-4.562-12.058
|
||||
c-2.661-3.856-6.246-7.197-10.754-10.021c-7.17-4.563-14.692-6.844-22.568-6.844c-7.441,0-13.47,2.146-18.087,6.437
|
||||
c-2.335,2.118-4.06,4.643-5.173,7.577c-1.114,2.933-1.534,6.002-1.263,9.206c0.38,4.128,1.901,8.121,4.562,11.977
|
||||
c2.661,3.857,6.219,7.225,10.673,10.103c7.169,4.563,14.719,6.844,22.649,6.844c4.508,0,8.609-0.841,12.302-2.525
|
||||
c0.488,0.706,1.086,1.304,1.792,1.793l9.94,5.947l-9.94,5.946c-0.706,0.49-1.303,1.088-1.792,1.793
|
||||
c-3.693-1.684-7.794-2.525-12.302-2.525c-7.93,0-15.48,2.282-22.649,6.844c-4.454,2.879-8.011,6.248-10.673,10.104
|
||||
c-2.661,3.857-4.182,7.849-4.562,11.977c-0.597,6.682,1.549,12.303,6.437,16.865c4.671,4.236,10.7,6.355,18.087,6.355
|
||||
c7.876,0,15.398-2.282,22.568-6.845c4.507-2.878,8.093-6.231,10.754-10.062c2.661-3.83,4.182-7.835,4.562-12.018
|
||||
c0.217-2.606-0.054-5.242-0.815-7.902c0.217-0.055,0.543-0.19,0.978-0.407l8.962-5.378l56.216,31.529
|
||||
c0.76,0.435,1.603,0.652,2.526,0.652c0.869,0,1.655-0.189,2.361-0.57l10.43-5.215c1.629-0.869,2.58-2.254,2.852-4.154
|
||||
C181.158,108.033,180.48,106.514,178.959,105.426z M82.169,51.816c-2.118,1.956-5.187,2.934-9.207,2.934
|
||||
c-5.432,0-10.646-1.603-15.643-4.807c-4.399-2.77-7.278-5.948-8.636-9.533c-1.358-3.584-0.788-6.518,1.711-8.799
|
||||
c2.119-1.955,5.188-2.933,9.207-2.933c5.432,0,10.646,1.603,15.643,4.807c4.399,2.77,7.278,5.947,8.636,9.532
|
||||
S84.668,49.535,82.169,51.816z M83.88,102.982c-1.358,3.584-4.237,6.762-8.636,9.533c-4.997,3.203-10.211,4.806-15.643,4.807
|
||||
c-4.019,0-7.088-0.979-9.207-2.934c-2.499-2.281-3.069-5.215-1.711-8.8s4.237-6.761,8.636-9.532
|
||||
c4.997-3.203,10.211-4.807,15.643-4.807c4.019,0,7.088,0.979,9.207,2.934C84.668,96.464,85.238,99.398,83.88,102.982z
|
||||
M89.746,62.571l0.732-0.731c0.055-0.054,0.136-0.122,0.245-0.203c0.109-0.082,0.218-0.177,0.326-0.285
|
||||
c0.272-0.218,0.598-0.544,0.978-0.979c0.38-0.434,0.652-0.733,0.815-0.896l2.118-2.118l6.437,3.829l-1.141,0.651
|
||||
c-1.792,1.086-2.688,2.607-2.688,4.562v0.896L89.746,62.571z M107.996,80.821l-13.037,7.82l-2.118-2.118
|
||||
c-0.217-0.217-0.516-0.543-0.896-0.979c-0.38-0.435-0.679-0.761-0.896-0.978c-0.271-0.218-0.461-0.381-0.57-0.489l-0.733-0.65
|
||||
l13.036-7.821v-9.207l62.571-35.115l10.428,5.215l-59.965,46.929L107.996,80.821z M165.354,114.714l-47.418-26.642
|
||||
c0.599-0.217,0.953-0.407,1.06-0.57l14.422-11.243l42.365,33.241L165.354,114.714z"/>
|
||||
<path d="M113.21,67.785c-1.412,0-2.634,0.517-3.666,1.549c-1.032,1.031-1.548,2.254-1.548,3.666s0.516,2.634,1.548,3.666
|
||||
s2.254,1.548,3.666,1.548s2.634-0.516,3.667-1.548c1.031-1.032,1.547-2.254,1.547-3.666s-0.516-2.635-1.547-3.666
|
||||
C115.844,68.302,114.622,67.785,113.21,67.785z"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 3.4 KiB |