UNPKG

1.17 kBJavaScriptView Raw
1import { defaultFill, defaultOpacity } from './_defaults'
2
3export const ticTacToe = (fill = defaultFill, opacity = defaultOpacity) => {
4 fill = fill.substring(fill.indexOf('#') + 1)
5 return `url('data:image/svg+xml,%3Csvg%20width%3D%2264%22%20height%3D%2264%22%20viewBox%3D%220%200%2064%2064%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Ctitle%3Etic-tac-toe%3C%2Ftitle%3E%3Cpath%20d%3D%22M8%2016c4.418%200%208-3.582%208-8s-3.582-8-8-8-8%203.582-8%208%203.582%208%208%208zm0-2c3.314%200%206-2.686%206-6s-2.686-6-6-6-6%202.686-6%206%202.686%206%206%206zm33.414-6l5.95-5.95L45.95.636%2040%206.586%2034.05.636%2032.636%202.05%2038.586%208l-5.95%205.95%201.414%201.414L40%209.414l5.95%205.95%201.414-1.414L41.414%208zM40%2048c4.418%200%208-3.582%208-8s-3.582-8-8-8-8%203.582-8%208%203.582%208%208%208zm0-2c3.314%200%206-2.686%206-6s-2.686-6-6-6-6%202.686-6%206%202.686%206%206%206zM9.414%2040l5.95-5.95-1.414-1.414L8%2038.586l-5.95-5.95L.636%2034.05%206.586%2040l-5.95%205.95%201.414%201.414L8%2041.414l5.95%205.95%201.414-1.414L9.414%2040z%22%20fill%3D%22%23${fill}%22%20fill-opacity%3D%22${opacity}%22%20fill-rule%3D%22evenodd%22%2F%3E%3C%2Fsvg%3E')`
6}